summaryrefslogtreecommitdiffstats
path: root/cups-res_init.patch
diff options
context:
space:
mode:
Diffstat (limited to 'cups-res_init.patch')
-rw-r--r--cups-res_init.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/cups-res_init.patch b/cups-res_init.patch
new file mode 100644
index 0000000..1dc110e
--- /dev/null
+++ b/cups-res_init.patch
@@ -0,0 +1,26 @@
+diff -up cups-1.5b1/cups/http-addr.c.res_init cups-1.5b1/cups/http-addr.c
+--- cups-1.5b1/cups/http-addr.c.res_init 2011-04-16 01:38:13.000000000 +0200
++++ cups-1.5b1/cups/http-addr.c 2011-05-24 15:56:50.000000000 +0200
+@@ -256,7 +256,8 @@ httpAddrLookup(
+
+ if (error)
+ {
+- if (error == EAI_FAIL)
++ if (error == EAI_FAIL || error == EAI_AGAIN || error == EAI_NODATA ||
++ error == EAI_NONAME)
+ cg->need_res_init = 1;
+
+ return (httpAddrString(addr, name, namelen));
+diff -up cups-1.5b1/cups/http-addrlist.c.res_init cups-1.5b1/cups/http-addrlist.c
+--- cups-1.5b1/cups/http-addrlist.c.res_init 2011-05-20 05:49:49.000000000 +0200
++++ cups-1.5b1/cups/http-addrlist.c 2011-05-24 15:56:50.000000000 +0200
+@@ -386,7 +386,8 @@ httpAddrGetList(const char *hostname, /*
+
+ freeaddrinfo(results);
+ }
+- else if (error == EAI_FAIL)
++ else if (error == EAI_FAIL || error == EAI_AGAIN || error == EAI_NODATA ||
++ error == EAI_NONAME)
+ cg->need_res_init = 1;
+
+ #else