[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

r2789 - in glibc-package/trunk/debian: . patches patches/hurd-i386



Author: sthibaul-guest
Date: 2008-01-21 01:52:58 +0000 (Mon, 21 Jan 2008)
New Revision: 2789

Added:
   glibc-package/trunk/debian/patches/hurd-i386/cvs-epfnosupport.diff
Removed:
   glibc-package/trunk/debian/patches/hurd-i386/submitted-epfnosupport.diff
Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/series
Log:
Wow, it got applied almost immediately for once...


Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog	2008-01-20 22:53:27 UTC (rev 2788)
+++ glibc-package/trunk/debian/changelog	2008-01-21 01:52:58 UTC (rev 2789)
@@ -5,7 +5,7 @@
     FTBFS on sh4.
 
   [ Samuel Thibault ]
-  * patches/hurd-i386/submitted-epfnosupport.diff new patch to fix socket()
+  * patches/hurd-i386/cvs-epfnosupport.diff: new patch to fix socket()
     error for IPV6.
 
  -- Aurelien Jarno <aurel32@debian.org>  Sat, 19 Jan 2008 12:01:23 +0100
@@ -46,7 +46,7 @@
     sunrpc memory leak.  closes: #460226.
 
   [ Samuel Thibault ]
-  * patches/hurd-i386/submitted-extern_inline.diff new patch to fix extern
+  * patches/hurd-i386/submitted-extern_inline.diff: new patch to fix extern
     inline declarations for c++.
 
  -- Aurelien Jarno <aurel32@debian.org>  Sat, 12 Jan 2008 15:33:10 +0100

Copied: glibc-package/trunk/debian/patches/hurd-i386/cvs-epfnosupport.diff (from rev 2788, glibc-package/trunk/debian/patches/hurd-i386/submitted-epfnosupport.diff)
===================================================================
--- glibc-package/trunk/debian/patches/hurd-i386/cvs-epfnosupport.diff	                        (rev 0)
+++ glibc-package/trunk/debian/patches/hurd-i386/cvs-epfnosupport.diff	2008-01-21 01:52:58 UTC (rev 2789)
@@ -0,0 +1,38 @@
+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.
+
+Index: ./hurd/hurdsock.c
+===================================================================
+RCS file: /cvs/glibc/libc/hurd/hurdsock.c,v
+retrieving revision 1.28
+diff -u -p -r1.28 hurdsock.c
+--- ./hurd/hurdsock.c	6 Jul 2001 04:54:47 -0000	1.28
++++ ./hurd/hurdsock.c	20 Jan 2008 16:09:38 -0000
+@@ -92,7 +92,7 @@ _hurd_socket_server (int domain, int dea
+ 
+   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;
+Index: ./sunrpc/bindrsvprt.c
+===================================================================
+RCS file: /cvs/glibc/libc/sunrpc/bindrsvprt.c,v
+retrieving revision 1.12
+diff -u -p -r1.12 bindrsvprt.c
+--- ./sunrpc/bindrsvprt.c	22 Nov 2005 04:39:05 -0000	1.12
++++ ./sunrpc/bindrsvprt.c	20 Jan 2008 16:09:38 -0000
+@@ -61,7 +61,7 @@ bindresvport (int sd, struct sockaddr_in
+     }
+   else if (sin->sin_family != AF_INET)
+     {
+-      __set_errno (EPFNOSUPPORT);
++      __set_errno (EAFNOSUPPORT);
+       return -1;
+     }
+ 

Deleted: glibc-package/trunk/debian/patches/hurd-i386/submitted-epfnosupport.diff
===================================================================
--- glibc-package/trunk/debian/patches/hurd-i386/submitted-epfnosupport.diff	2008-01-20 22:53:27 UTC (rev 2788)
+++ glibc-package/trunk/debian/patches/hurd-i386/submitted-epfnosupport.diff	2008-01-21 01:52:58 UTC (rev 2789)
@@ -1,38 +0,0 @@
-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.
-
-Index: ./hurd/hurdsock.c
-===================================================================
-RCS file: /cvs/glibc/libc/hurd/hurdsock.c,v
-retrieving revision 1.28
-diff -u -p -r1.28 hurdsock.c
---- ./hurd/hurdsock.c	6 Jul 2001 04:54:47 -0000	1.28
-+++ ./hurd/hurdsock.c	20 Jan 2008 16:09:38 -0000
-@@ -92,7 +92,7 @@ _hurd_socket_server (int domain, int dea
- 
-   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;
-Index: ./sunrpc/bindrsvprt.c
-===================================================================
-RCS file: /cvs/glibc/libc/sunrpc/bindrsvprt.c,v
-retrieving revision 1.12
-diff -u -p -r1.12 bindrsvprt.c
---- ./sunrpc/bindrsvprt.c	22 Nov 2005 04:39:05 -0000	1.12
-+++ ./sunrpc/bindrsvprt.c	20 Jan 2008 16:09:38 -0000
-@@ -61,7 +61,7 @@ bindresvport (int sd, struct sockaddr_in
-     }
-   else if (sin->sin_family != AF_INET)
-     {
--      __set_errno (EPFNOSUPPORT);
-+      __set_errno (EAFNOSUPPORT);
-       return -1;
-     }
- 

Modified: glibc-package/trunk/debian/patches/series
===================================================================
--- glibc-package/trunk/debian/patches/series	2008-01-20 22:53:27 UTC (rev 2788)
+++ glibc-package/trunk/debian/patches/series	2008-01-21 01:52:58 UTC (rev 2789)
@@ -89,7 +89,7 @@
 hurd-i386/submitted-IPV6_PKTINFO.diff 
 hurd-i386/cvs-O_CLOEXEC_fix.diff
 hurd-i386/submitted-extern_inline.diff -p0
-hurd-i386/submitted-epfnosupport.diff -p0
+hurd-i386/cvs-epfnosupport.diff -p0
 
 i386/local-biarch.diff 
 i386/local-clone.diff -p0


Reply to: