1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
freebsd-ports/www/webalizer-2/files/patch-ac
2000-10-10 15:53:51 +00:00

12 lines
539 B
Plaintext

--- 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++;
}
}