summaryrefslogtreecommitdiff
path: root/audio/mpg123/patches/patch-aj
diff options
context:
space:
mode:
Diffstat (limited to 'audio/mpg123/patches/patch-aj')
-rw-r--r--audio/mpg123/patches/patch-aj15
1 files changed, 0 insertions, 15 deletions
diff --git a/audio/mpg123/patches/patch-aj b/audio/mpg123/patches/patch-aj
deleted file mode 100644
index 1e077847ff2..00000000000
--- a/audio/mpg123/patches/patch-aj
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-aj,v 1.4 2011/10/17 21:43:27 shattered Exp $
-
-getaddrinfo(3) returns non-zero on error.
-
---- src/resolver.c.orig 2010-10-04 06:23:26.000000000 +0000
-+++ src/resolver.c
-@@ -283,7 +283,7 @@ int open_connection(mpg123_string *host,
- #endif
- addrcount = getaddrinfo(host->p, port->p, &hints, &addrlist);
-
-- if(addrcount <0)
-+ if(addrcount != 0)
- {
- error3("Resolving %s:%s: %s", host->p, port->p, gai_strerror(addrcount));
- return -1;