blob: d559292cc0c1c9a0a85f1d1e92d26ece1a0a875e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- webalizer.c.orig Fri Oct 6 11:59:08 2000
+++ webalizer.c Sun Oct 8 00:16:19 2000
@@ -1813,7 +1813,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 */
cp1++;
}
}
|