ben         97/08/23 09:17:14

  Modified:    src/main http_core.h httpd.h
  Log:
  Fix warnings on Irix.
  
  Revision  Changes    Path
  1.27      +1 -1      apachen/src/main/http_core.h
  
  Index: http_core.h
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/main/http_core.h,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- http_core.h       1997/08/06 20:21:25     1.26
  +++ http_core.h       1997/08/23 16:17:12     1.27
  @@ -176,7 +176,7 @@
        * directory_walk() and its relatives, this field was created and
        * is set to the result of that call.
        */
  -    int d_is_fnmatch : 1;
  +    unsigned d_is_fnmatch : 1;
   
       /* System Resource Control */
   #ifdef RLIMIT_CPU
  
  
  
  1.143     +2 -2      apachen/src/main/httpd.h
  
  Index: httpd.h
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/main/httpd.h,v
  retrieving revision 1.142
  retrieving revision 1.143
  diff -u -r1.142 -r1.143
  --- httpd.h   1997/08/23 16:01:22     1.142
  +++ httpd.h   1997/08/23 16:17:13     1.143
  @@ -667,10 +667,10 @@
                                 */
     char *auth_type;           /* Ditto. */
   
  -  int aborted : 1;           /* Are we still talking? */
  +  unsigned aborted : 1;              /* Are we still talking? */
     int keepalive : 2;         /* Are we using HTTP Keep-Alive?
                                    * -1 fatal error, 0 undecided, 1 yes */
  -  int keptalive : 1;         /* Did we use HTTP Keep-Alive? */
  +  unsigned keptalive : 1;    /* Did we use HTTP Keep-Alive? */
     int double_reverse : 2;    /* have we done double-reverse DNS?
                                 * -1 yes/failure, 0 not yet, 1 yes/success */
     int keepalives;            /* How many times have we used it? */
  
  
  

Reply via email to