From: Fabian Keil Date: Tue, 7 Nov 2006 12:46:43 +0000 (+0000) Subject: Silence compiler warning on NetBSD 3.1. X-Git-Tag: v_3_0_6~17 X-Git-Url: http://www.privoxy.org/gitweb/?a=commitdiff_plain;h=1ec73e0ea959e24fecfea2e5cbd00518f5d582d1;p=privoxy.git Silence compiler warning on NetBSD 3.1. --- diff --git a/miscutil.c b/miscutil.c index 9604c90e..5167546d 100644 --- a/miscutil.c +++ b/miscutil.c @@ -1,4 +1,4 @@ -const char miscutil_rcs[] = "$Id: miscutil.c,v 1.42 2006/09/09 14:01:45 fabiankeil Exp $"; +const char miscutil_rcs[] = "$Id: miscutil.c,v 1.43 2006/09/23 13:26:38 roro Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/miscutil.c,v $ @@ -36,6 +36,9 @@ const char miscutil_rcs[] = "$Id: miscutil.c,v 1.42 2006/09/09 14:01:45 fabianke * * Revisions : * $Log: miscutil.c,v $ + * Revision 1.43 2006/09/23 13:26:38 roro + * Replace TABs by spaces in source code. + * * Revision 1.42 2006/09/09 14:01:45 fabiankeil * Integrated Oliver Yeoh's domain pattern fix * to make sure *x matches xx. Closes Patch 1217393 @@ -767,7 +770,7 @@ char *string_toupper(const char *string) while (*q != '\0') { - *p++ = toupper(*q++); + *p++ = toupper((int) *q++); } return result;