diff options
author | ache <ache@FreeBSD.org> | 2000-04-22 03:25:44 +0800 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2000-04-22 03:25:44 +0800 |
commit | 2ca45fcbb4fbfd21c6e6e305a7d1d1002374a874 (patch) | |
tree | a355d7d4a54abbe741ba1743fd949240a33ab7f2 | |
parent | 16a2fcaa2b9cd738ba9bc37b2da7b9f947edf0d8 (diff) | |
download | freebsd-ports-gnome-2ca45fcbb4fbfd21c6e6e305a7d1d1002374a874.tar.gz freebsd-ports-gnome-2ca45fcbb4fbfd21c6e6e305a7d1d1002374a874.tar.zst freebsd-ports-gnome-2ca45fcbb4fbfd21c6e6e305a7d1d1002374a874.zip |
do not lowercase search strings
-rw-r--r-- | www/webalizer-2/files/patch-ac | 11 | ||||
-rw-r--r-- | www/webalizer/files/patch-ac | 11 |
2 files changed, 20 insertions, 2 deletions
diff --git a/www/webalizer-2/files/patch-ac b/www/webalizer-2/files/patch-ac index 589432a12a99..4b7e06e0b9f8 100644 --- a/www/webalizer-2/files/patch-ac +++ b/www/webalizer-2/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; 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; |