allow rrd_cgi to deal with umlauts -- Alexander Schwartz <alexander.schwartz@gmx...
authoroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Fri, 8 Feb 2002 18:40:37 +0000 (18:40 +0000)
committeroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Fri, 8 Feb 2002 18:40:37 +0000 (18:40 +0000)
git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@77 a5681a0c-68f1-0310-ab6d-d61299d08faa

src/rrd_cgi.c

index 0c4f6de..f6a5908 100644 (file)
@@ -459,7 +459,7 @@ char* scanargs(char *aLine, long *argc, char ***args)
   getP = aLine;
   putP = aLine;
   while (*getP && !( !Quote  && (braket == 0) && ((*getP) == '>'))){
-    if (*getP < ' ') *getP = ' '; /*remove all special chars*/
+    if ((unsigned)*getP < ' ') *getP = ' '; /*remove all special chars*/
     switch (*getP) {
     case ' ': 
       if (Quote){