You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by bj...@locus.apache.org on 2000/04/24 08:51:23 UTC

cvs commit: apache-2.0/src/main util.c

bjh         00/04/23 23:51:23

  Modified:    src/main util.c
  Log:
  Change strncasecmp() definition to match Bill's prototype. Fixes compile
  break on OS/2.
  
  Revision  Changes    Path
  1.38      +1 -1      apache-2.0/src/main/util.c
  
  Index: util.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/main/util.c,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -r1.37 -r1.38
  --- util.c	2000/04/14 15:58:57	1.37
  +++ util.c	2000/04/24 06:51:22	1.38
  @@ -1713,7 +1713,7 @@
   #endif
   
   #ifndef HAVE_STRNCASECMP
  -int strncasecmp(const char *a, const char *b, int n)
  +int strncasecmp(const char *a, const char *b, size_t n)
   {
       const char *p = a;
       const char *q = b;