summaryrefslogtreecommitdiff
path: root/www/webalizer
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>2000-04-21 19:25:44 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>2000-04-21 19:25:44 +0000
commit2d082082f6fb4455178e351456223ff559593b82 (patch)
tree6fda54e2e8b7b6658660034fe0f0b2a39051df07 /www/webalizer
parentUpdate to 1.0 (diff)
do not lowercase search strings
Notes
Notes: svn path=/head/; revision=27864
Diffstat (limited to 'www/webalizer')
-rw-r--r--www/webalizer/files/patch-ac11
1 files changed, 10 insertions, 1 deletions
diff --git a/www/webalizer/files/patch-ac b/www/webalizer/files/patch-ac
index 589432a12a99..4b7e06e0b9f8 100644
--- a/www/webalizer/files/patch-ac
+++ b/www/webalizer/files/patch-ac
@@ -1,5 +1,5 @@
--- webalizer.c.orig Sun Apr 9 05:18:56 2000
-+++ webalizer.c Thu Apr 20 05:46:49 2000
++++ webalizer.c Fri Apr 21 23:11:15 2000
@@ -61,6 +61,7 @@
#endif
@@ -17,3 +17,12 @@
}
}
#endif /* USE_DNS */
+@@ -1785,7 +1786,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;