1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-11 07:22:22 +00:00

Update to 3.2.2.

PR:		59090
Submitted by:	Jason Harris <jharris@widomaker.com>
This commit is contained in:
Makoto Matsushita 2003-11-10 15:00:10 +00:00
parent ab0d20a62a
commit b8a9afb08d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=93662
4 changed files with 2 additions and 33 deletions

View File

@ -6,8 +6,7 @@
#
PORTNAME= jwhois
PORTVERSION= 3.2.1
PORTREVISION= 2
PORTVERSION= 3.2.2
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= jwhois

View File

@ -1 +1 @@
MD5 (jwhois-3.2.1.tar.gz) = 0d54fd61a7f2fe5d585279b88466d994
MD5 (jwhois-3.2.2.tar.gz) = 3ad57a8cfc4f32fe41b1131711d34a78

View File

@ -1,10 +0,0 @@
--- example/jwhois.conf 2003/02/04 21:21:16 1.94
+++ example/jwhois.conf 2003/02/12 20:01:16 1.95
@@ -410,6 +410,7 @@
"^COHO-[0-9]+$" = "whois.corenic.net";
".*-RIPE$" = "whois.ripe.net";
+ ".*-MNT$" = "whois.ripe.net";
".*-ARIN$" = "whois.arin.net";
".*-AP$" = "whois.apnic.net";
".*-ORG$" = "whois.internic.net";

View File

@ -1,20 +0,0 @@
--- src/lookup.c 2002/08/02 22:17:41 1.33
+++ src/lookup.c 2003/02/04 21:21:16 1.34
@@ -391,7 +391,7 @@
{
memcpy(bptr, text, strlen(text)+1);
- strptr = (char *)strtok(bptr, "\n");
+ strptr = (char *)strtok(bptr, "\r\n");
while (strptr)
{
rpb.allocated = 0;
@@ -443,7 +443,7 @@
}
else if (ind == -2)
return -1;
- strptr = (char *)strtok(NULL, "\n");
+ strptr = (char *)strtok(NULL, "\r\n");
}
}
}