about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2008-01-21 01:35:17 +0000
committerRoland McGrath <roland@gnu.org>2008-01-21 01:35:17 +0000
commit173b756d8f7f1b6b35ef00a62ea8cdb74a6217be (patch)
treea836d5854583db980d9734591fa254cf92b9bc53
parent4c533566c2bb94162bcc1f66c5cf9db609e20803 (diff)
downloadglibc-173b756d8f7f1b6b35ef00a62ea8cdb74a6217be.tar.gz
glibc-173b756d8f7f1b6b35ef00a62ea8cdb74a6217be.tar.xz
glibc-173b756d8f7f1b6b35ef00a62ea8cdb74a6217be.zip
2008-01-20 Samuel Thibault <samuel.thibault@ens-lyon.org>
	* hurd/hurdsock.c (_hurd_socket_server): Return the standard
	error EAFNOSUPPORT rather than non-standard EPFNOSUPPORT.
	* sunrpc/bindrsvprt.c (bindresvport): Likewise.
-rw-r--r--hurd/hurdsock.c2
-rw-r--r--sunrpc/bindrsvprt.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/hurd/hurdsock.c b/hurd/hurdsock.c
index 07eb6a40c1..a01b8aa85c 100644
--- a/hurd/hurdsock.c
+++ b/hurd/hurdsock.c
@@ -92,7 +92,7 @@ _hurd_socket_server (int domain, int dead)
 
   if (server == MACH_PORT_NULL && errno == ENOENT)
     /* If the server node is absent, we don't support that protocol.  */
-    errno = EPFNOSUPPORT;
+    errno = EAFNOSUPPORT;
 
   __mutex_unlock (&lock);
   HURD_CRITICAL_END;
diff --git a/sunrpc/bindrsvprt.c b/sunrpc/bindrsvprt.c
index 023ae1723b..003c3dfd46 100644
--- a/sunrpc/bindrsvprt.c
+++ b/sunrpc/bindrsvprt.c
@@ -61,7 +61,7 @@ bindresvport (int sd, struct sockaddr_in *sin)
     }
   else if (sin->sin_family != AF_INET)
     {
-      __set_errno (EPFNOSUPPORT);
+      __set_errno (EAFNOSUPPORT);
       return -1;
     }