jim         96/07/29 15:53:52

  Modified:    src       http_protocol.c
  Log:
  Get rid of compiler warning
  
  Revision  Changes    Path
  1.31      +1 -1      apache/src/http_protocol.c
  
  Index: http_protocol.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_protocol.c,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -C3 -r1.30 -r1.31
  *** http_protocol.c   1996/07/28 19:27:44     1.30
  --- http_protocol.c   1996/07/29 22:53:51     1.31
  ***************
  *** 1056,1062 ****
        int c;
    
        while ((c = bgetc (b)) != EOF && isxdigit (c)) {
  !         int xvalue;
    
            if (c >= '0' && c <= '9') xvalue = c - '0';
            else if (c >= 'A' && c <= 'F') xvalue = c - 'A' + 0xa;
  --- 1056,1062 ----
        int c;
    
        while ((c = bgetc (b)) != EOF && isxdigit (c)) {
  !         int xvalue = 0;
    
            if (c >= '0' && c <= '9') xvalue = c - '0';
            else if (c >= 'A' && c <= 'F') xvalue = c - 'A' + 0xa;
  
  
  

Reply via email to