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

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



Author: sthibault
Date: 2012-05-10 01:06:40 +0000 (Thu, 10 May 2012)
New Revision: 5247

Added:
   glibc-package/trunk/debian/patches/hurd-i386/cvs-eaf.diff
Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/series
Log:
  * patches/hurd-i386/cvs-eaf.diff: New patch to fix socket() EAFNOSUPPORT error
    value.


Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog	2012-05-09 08:49:19 UTC (rev 5246)
+++ glibc-package/trunk/debian/changelog	2012-05-10 01:06:40 UTC (rev 5247)
@@ -1,8 +1,13 @@
 eglibc (2.13-33) UNRELEASED; urgency=low
 
+  [ Clint Adams ]
   * patches/localedata/cvs-rupeesign.diff: use new rupee symbol
     in Indian locales, thanks to Prema.  closes: #671299.
 
+  [ Samuel Thibault ]
+  * patches/hurd-i386/cvs-eaf.diff: New patch to fix socket() EAFNOSUPPORT error
+    value.
+
  -- Clint Adams <clint@debian.org>  Fri, 04 May 2012 23:39:00 -0400
 
 eglibc (2.13-32) unstable; urgency=medium

Added: glibc-package/trunk/debian/patches/hurd-i386/cvs-eaf.diff
===================================================================
--- glibc-package/trunk/debian/patches/hurd-i386/cvs-eaf.diff	                        (rev 0)
+++ glibc-package/trunk/debian/patches/hurd-i386/cvs-eaf.diff	2012-05-10 01:06:40 UTC (rev 5247)
@@ -0,0 +1,13 @@
+diff --git a/sysdeps/mach/hurd/socket.c b/sysdeps/mach/hurd/socket.c
+index a707ed9..b29a6e6 100644
+--- a/sysdeps/mach/hurd/socket.c
++++ b/sysdeps/mach/hurd/socket.c
+@@ -57,7 +57,7 @@ __socket (domain, type, protocol)
+      isn't supported.  */
+   if (err == MACH_SEND_INVALID_DEST || err == MIG_SERVER_DIED
+       || err == MIG_BAD_ID || err == EOPNOTSUPP)
+-    err = EPFNOSUPPORT;
++    err = EAFNOSUPPORT;
+ 
+   if (err)
+     return __hurd_fail (err);

Modified: glibc-package/trunk/debian/patches/series
===================================================================
--- glibc-package/trunk/debian/patches/series	2012-05-09 08:49:19 UTC (rev 5246)
+++ glibc-package/trunk/debian/patches/series	2012-05-10 01:06:40 UTC (rev 5247)
@@ -199,6 +199,7 @@
 hurd-i386/tg-libpthread_depends.diff
 hurd-i386/libpthread_librt-link.diff
 hurd-i386/libpthread_version.diff
+hurd-i386/cvs-eaf.diff
 
 kfreebsd/submitted-libc_once.diff
 


Reply to: