diff options
| author | Remi Collet <fedora@famillecollet.com> | 2011-12-27 16:50:50 +0100 | 
|---|---|---|
| committer | Remi Collet <fedora@famillecollet.com> | 2011-12-27 16:50:50 +0100 | 
| commit | 65608e0f8bbc0190cc1b7646f653e796c807f02b (patch) | |
| tree | 274ade8f5007bd7f9c252d8262637e0300363e82 /cups-res_init.patch | |
import cups from F16
Diffstat (limited to 'cups-res_init.patch')
| -rw-r--r-- | cups-res_init.patch | 26 | 
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 | 
