blob: 8c28cee7aa22b2e09fc235f94cc874c65c88394d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- webalizer.c.bak Fri Sep 29 10:20:21 2000
+++ webalizer.c Sat Sep 30 18:11:19 2000
@@ -1807,7 +1807,7 @@
if (*cp1=='+') *cp1=' '; /* change + to space */
if (sp_flg && *cp1==' ') { cp1++; continue; } /* compress spaces */
if (*cp1==' ') sp_flg=1; else sp_flg=0; /* (flag spaces here) */
- *cp2++=tolower(*cp1++); /* normal character */
+ *cp2++= *cp1++; /* normal character */
}
}
*cp2=0; cp2=tmpbuf;
|