aboutsummaryrefslogtreecommitdiff
path: root/irc/ctrlproxy
diff options
context:
space:
mode:
authorChin-San Huang <chinsan@FreeBSD.org>2009-01-03 05:59:08 +0000
committerChin-San Huang <chinsan@FreeBSD.org>2009-01-03 05:59:08 +0000
commitd1fc6986cb3c53c73cad92b55e0978ddf30af380 (patch)
tree6feab927b2ab6db1c55b67d7535745f9be0138d4 /irc/ctrlproxy
parent064272f570c626fed5637eac4978dc3f0bdd9a1e (diff)
downloadports-d1fc6986cb3c53c73cad92b55e0978ddf30af380.tar.gz
ports-d1fc6986cb3c53c73cad92b55e0978ddf30af380.zip
- Remove unused patch
Notes
Notes: svn path=/head/; revision=225161
Diffstat (limited to 'irc/ctrlproxy')
-rw-r--r--irc/ctrlproxy/files/patch-lib_connection.c15
-rw-r--r--irc/ctrlproxy/files/patch-src__internals.h18
2 files changed, 0 insertions, 33 deletions
diff --git a/irc/ctrlproxy/files/patch-lib_connection.c b/irc/ctrlproxy/files/patch-lib_connection.c
deleted file mode 100644
index d5df0a2b084a..000000000000
--- a/irc/ctrlproxy/files/patch-lib_connection.c
+++ /dev/null
@@ -1,15 +0,0 @@
-
-$FreeBSD$
-
---- lib/connection.c.orig
-+++ lib/connection.c
-@@ -467,7 +467,8 @@
- if (error) {
- network_log(LOG_ERROR, s, "Unable to lookup %s:%s %s",
- cs->host, cs->port, gai_strerror(error));
-- freeaddrinfo(addrinfo);
-+ if(addrinfo)
-+ freeaddrinfo(addrinfo);
- return FALSE;
- }
-
diff --git a/irc/ctrlproxy/files/patch-src__internals.h b/irc/ctrlproxy/files/patch-src__internals.h
deleted file mode 100644
index b92da079656e..000000000000
--- a/irc/ctrlproxy/files/patch-src__internals.h
+++ /dev/null
@@ -1,18 +0,0 @@
---- src/internals.h.orig Fri Jan 5 06:33:06 2007
-+++ src/internals.h Fri Jan 5 23:27:32 2007
-@@ -29,12 +29,13 @@
- # include <unistd.h>
- #endif
- #include <netdb.h>
--#include <sys/socket.h>
- #include <sys/types.h>
-+#include <sys/socket.h>
-+#include <netinet/in.h>
-+#include <arpa/inet.h>
- #include <errno.h>
- #include <stdio.h>
- #include <stdlib.h>
--#include <sys/types.h>
- #include <string.h>
- #include <stdarg.h>
- #include <signal.h>