mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
12 lines
545 B
Plaintext
12 lines
545 B
Plaintext
--- 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;
|