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

12 lines
539 B
Plaintext
Raw Normal View History

2000-10-10 15:53:51 +00:00
--- webalizer.c.orig Fri Oct 6 11:59:08 2000
+++ webalizer.c Sun Oct 8 00:16:19 2000
@@ -1813,7 +1813,7 @@
2000-04-21 19:25:44 +00:00
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) */
2000-10-10 15:53:51 +00:00
- *cp2++=tolower(*cp1); /* normal character */
2000-09-30 14:19:53 +00:00
+ *cp2++= *cp1++; /* normal character */
2000-10-10 15:53:51 +00:00
cp1++;
2000-04-21 19:25:44 +00:00
}
}