Bugzilla – Attachment 1796 Details for
Bug 1721
check for EPFNOSUPPORT from socket()
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
check for EPFNOSUPPORT from socket()
hurd-epfnosupport.patch (text/plain), 523 bytes, created by
Colin Watson
on 2010-03-02 00:32:31 AEDT
(
hide
)
Description:
check for EPFNOSUPPORT from socket()
Filename:
MIME Type:
Creator:
Colin Watson
Created:
2010-03-02 00:32:31 AEDT
Size:
523 bytes
patch
obsolete
>Index: b/channels.c >=================================================================== >--- a/channels.c >+++ b/channels.c >@@ -3098,7 +3098,11 @@ > sock = socket(ai->ai_family, ai->ai_socktype, > ai->ai_protocol); > if (sock < 0) { >- if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) { >+ if ((errno != EINVAL) && (errno != EAFNOSUPPORT) >+#ifdef EPFNOSUPPORT >+ && (errno != EPFNOSUPPORT) >+#endif >+ ) { > error("socket: %.100s", strerror(errno)); > freeaddrinfo(aitop); > return -1;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Flags:
dtucker
:
ok+
Actions:
View
|
Diff
Attachments on
bug 1721
: 1796