summaryrefslogtreecommitdiff
path: root/www/webalizer
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>2000-10-25 00:42:37 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>2000-10-25 00:42:37 +0000
commit26a66d8828eb3f39d92ea8a6b705de090c710145 (patch)
tree1fe5dd852ce3029101b95d6ee510ee30cc7f471f /www/webalizer
parentHand these ports to Dmitry Sivachenko <dima@chg.ru>. (diff)
fix off-by-one mistake in my fix
Notes
Notes: svn path=/head/; revision=34201
Diffstat (limited to 'www/webalizer')
-rw-r--r--www/webalizer/files/patch-ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/www/webalizer/files/patch-ac b/www/webalizer/files/patch-ac
index ed9bad3a3c5e..2f257c710ad7 100644
--- a/www/webalizer/files/patch-ac
+++ b/www/webalizer/files/patch-ac
@@ -47,7 +47,7 @@
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++= *cp1; /* normal character */
cp1++;
}
}