dgaudet     98/03/18 00:26:40

  Modified:    src/main util.c
  Log:
  It would be so nice if the whole world used unsigned chars.  signed chars
  make no sense to me.  Oh well.
  
  Revision  Changes    Path
  1.107     +1 -1      apache-1.3/src/main/util.c
  
  Index: util.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/main/util.c,v
  retrieving revision 1.106
  retrieving revision 1.107
  diff -u -r1.106 -r1.107
  --- util.c    1998/03/17 07:39:57     1.106
  +++ util.c    1998/03/18 08:26:39     1.107
  @@ -997,7 +997,7 @@
        while (*s && !TEST_CHAR(*s, T_HTTP_TOKEN_STOP)) {
            ++s;
        }
  -     if (!strncasecmp(start_token, tok, s - start_token)) {
  +     if (!strncasecmp((const char *)start_token, (const char *)tok, s - 
start_token)) {
            return 1;
        }
        if (!*s) {
  
  
  

Reply via email to