diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 2000-10-10 15:53:51 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 2000-10-10 15:53:51 +0000 |
commit | c14f8b015ebbd959dbbec346fe7e95a8df308cab (patch) | |
tree | bd39a1250baf452ac5d38cdadc106f06ba2969af /www/webalizer/files | |
parent | 765d663b5664be6531b58bcb0b1dc0c17b37235f (diff) | |
download | ports-c14f8b015ebbd959dbbec346fe7e95a8df308cab.tar.gz ports-c14f8b015ebbd959dbbec346fe7e95a8df308cab.zip |
Notes
Diffstat (limited to 'www/webalizer/files')
-rw-r--r-- | www/webalizer/files/patch-ac | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/www/webalizer/files/patch-ac b/www/webalizer/files/patch-ac index 8c28cee7aa22..d559292cc0c1 100644 --- a/www/webalizer/files/patch-ac +++ b/www/webalizer/files/patch-ac @@ -1,11 +1,11 @@ ---- webalizer.c.bak Fri Sep 29 10:20:21 2000 -+++ webalizer.c Sat Sep 30 18:11:19 2000 -@@ -1807,7 +1807,7 @@ +--- 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++=tolower(*cp1); /* normal character */ + *cp2++= *cp1++; /* normal character */ + cp1++; } } - *cp2=0; cp2=tmpbuf; |