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...@hyperreal.org on 2000/02/06 04:53:16 UTC

cvs commit: apache-1.3/src/modules/standard mod_mime.c

bjh         00/02/05 19:53:14

  Modified:    src/modules/standard mod_mime.c
  Log:
  Use ap_isgraph instead of isgraph to avoid "subscript has type `char'"
  warning.
  
  Revision  Changes    Path
  1.54      +1 -1      apache-1.3/src/modules/standard/mod_mime.c
  
  Index: mod_mime.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/modules/standard/mod_mime.c,v
  retrieving revision 1.53
  retrieving revision 1.54
  diff -u -r1.53 -r1.54
  --- mod_mime.c	2000/01/11 14:13:49	1.53
  +++ mod_mime.c	2000/02/06 03:53:11	1.54
  @@ -345,7 +345,7 @@
   {
       int res;
   
  -    res = (ap_isascii(c) && isgraph(c)
  +    res = (ap_isascii(c) && ap_isgraph(c)
   	   && (strchr(tspecial, c) == NULL)) ? 1 : -1;
       return res;
   }