summaryrefslogtreecommitdiff
path: root/www/webalizer/files/patch-ac
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2000-09-23 01:36:53 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2000-09-23 01:36:53 +0000
commit8c7499bdfa85657ea6c2517ada0ef4a4db489beb (patch)
tree1c37a6088704b234484b1352cd1f882fb2a253ad /www/webalizer/files/patch-ac
parentCatch up with Wnn6-lib update. (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_1_1'.release/4.1.1
Notes
Notes: svn path=/head/; revision=33029 svn path=/tags/RELEASE_4_1_1/; revision=33030; tag=release/4.1.1
Diffstat (limited to 'www/webalizer/files/patch-ac')
-rw-r--r--www/webalizer/files/patch-ac28
1 files changed, 0 insertions, 28 deletions
diff --git a/www/webalizer/files/patch-ac b/www/webalizer/files/patch-ac
deleted file mode 100644
index 4b7e06e0b9f8..000000000000
--- a/www/webalizer/files/patch-ac
+++ /dev/null
@@ -1,28 +0,0 @@
---- webalizer.c.orig Sun Apr 9 05:18:56 2000
-+++ webalizer.c Fri Apr 21 23:11:15 2000
-@@ -61,6 +61,7 @@
- #endif
-
- #ifdef USE_DNS
-+#include <netinet/in.h>
- #include <arpa/inet.h>
-
- #ifdef HAVE_DB_185_H
-@@ -480,7 +481,7 @@
- else
- {
- /* Using DNS cache file <filaneme> */
-- if (verbose) printf("%s %s\n",msg_dns_usec,dns_cache);
-+ if (verbose>1) printf("%s %s\n",msg_dns_usec,dns_cache);
- }
- }
- #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;