Upgrade to 2.01.03

This commit is contained in:
Andrey A. Chernov 2000-09-30 14:19:53 +00:00
parent 84c1cf3f8d
commit 1a8165a7c6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=33262
4 changed files with 11 additions and 27 deletions

View File

@ -6,10 +6,10 @@
#
PORTNAME= webalizer
PORTVERSION= 2.01.02
PORTVERSION= 2.1.3
CATEGORIES= www
MASTER_SITES= ftp://ftp.mrunix.net/pub/webalizer/pre-release/
DISTNAME= ${PORTNAME}-2.01-02-src
DISTNAME= ${PORTNAME}-2.01-03-src
MAINTAINER= ache@FreeBSD.org

View File

@ -1 +1 @@
MD5 (webalizer-2.01-02-src.tar.bz2) = 685ce1c7ee60ea7de3bfb3f31f0df30e
MD5 (webalizer-2.01-03-src.tar.bz2) = ec3146a2a6573d59ddf8db188c788b21

View File

@ -1,19 +1,11 @@
--- webalizer.c.orig Wed Sep 27 20:26:30 2000
+++ webalizer.c Thu Sep 28 17:41:01 2000
@@ -61,6 +61,7 @@
#endif
#ifdef USE_DNS
+#include <netinet/in.h>
#include <arpa/inet.h>
#ifdef HAVE_DB_185_H
@@ -1798,7 +1799,7 @@
--- webalizer.c.bak Fri Sep 29 10:20:21 2000
+++ webalizer.c Sat Sep 30 18:11:19 2000
@@ -1807,7 +1807,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++= *cp1++; /* normal character */
}
}
*cp2=0; cp2=tmpbuf;

View File

@ -1,19 +1,11 @@
--- webalizer.c.orig Wed Sep 27 20:26:30 2000
+++ webalizer.c Thu Sep 28 17:41:01 2000
@@ -61,6 +61,7 @@
#endif
#ifdef USE_DNS
+#include <netinet/in.h>
#include <arpa/inet.h>
#ifdef HAVE_DB_185_H
@@ -1798,7 +1799,7 @@
--- webalizer.c.bak Fri Sep 29 10:20:21 2000
+++ webalizer.c Sat Sep 30 18:11:19 2000
@@ -1807,7 +1807,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++= *cp1++; /* normal character */
}
}
*cp2=0; cp2=tmpbuf;