summaryrefslogtreecommitdiff
path: root/net/msntp/files
diff options
context:
space:
mode:
Diffstat (limited to 'net/msntp/files')
-rw-r--r--net/msntp/files/patch-internet.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/net/msntp/files/patch-internet.c b/net/msntp/files/patch-internet.c
deleted file mode 100644
index 1894b72174e4..000000000000
--- a/net/msntp/files/patch-internet.c
+++ /dev/null
@@ -1,22 +0,0 @@
---- internet.c.orig Sat Sep 30 10:42:51 2000
-+++ internet.c Thu Feb 21 09:18:31 2008
-@@ -77,17 +77,8 @@
-
- /* Look up the Internet name or IP number. */
-
-- if (! isdigit(hostname[0])) {
-- errno = 0;
-- host = gethostbyname(hostname);
-- } else {
-- if ((ipaddr = inet_addr(hostname)) == (unsigned long)-1)
-- fatal(0,"invalid IP number %s",hostname);
-- network_to_address(address,ipaddr);
-- errno = 0;
-- host = gethostbyaddr((void *)address,sizeof(struct in_addr),
-- AF_INET);
-- }
-+ errno = 0;
-+ host = gethostbyname(hostname);
-
- /* Now clear the timer and check the result. */
-