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

r4102 - in glibc-package/trunk/debian: . patches/kfreebsd



Author: ps-guest
Date: 2010-01-25 09:30:53 +0000 (Mon, 25 Jan 2010)
New Revision: 4102

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/kfreebsd/local-sysdeps.diff
Log:
kfreebsd/local-sysdeps.diff: update to revision 2957 (from glibc-bsd).


Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog	2010-01-24 01:40:49 UTC (rev 4101)
+++ glibc-package/trunk/debian/changelog	2010-01-25 09:30:53 UTC (rev 4102)
@@ -1,7 +1,7 @@
 eglibc (2.10.2-6) UNRELEASED; urgency=low
 
   [ Aurelien Jarno ]
-  * kfreebsd/local-sysdeps.diff: update to revision 2947 (from glibc-bsd).
+  * kfreebsd/local-sysdeps.diff: update to revision 2957 (from glibc-bsd).
   * Don't run the testsuite in parallel, as it sometimes causes some failures
     in some tests.
   * Add patches/any/cvs-malloc_info-init.diff to fix malloc_info() with no

Modified: glibc-package/trunk/debian/patches/kfreebsd/local-sysdeps.diff
===================================================================
--- glibc-package/trunk/debian/patches/kfreebsd/local-sysdeps.diff	2010-01-24 01:40:49 UTC (rev 4101)
+++ glibc-package/trunk/debian/patches/kfreebsd/local-sysdeps.diff	2010-01-25 09:30:53 UTC (rev 4102)
@@ -6056,11 +6056,11 @@
 +
 +/* Get device name in /dev with a device number of dev and a file type
 +   matching the one encoded in type.  */
-+extern char *devname(dev_t dev, mode_t type) __THROW;
++extern char *devname(__dev_t dev, __mode_t type) __THROW;
 +
 +/* Store at most BUFLEN characters of the device name in /dev with a 
 +   device number of dev and a file type matching the one encoded in type.  */
-+extern char *devname_r(dev_t dev, mode_t type, char *buf, int buflen) __THROW;
++extern char *devname_r(__dev_t dev, __mode_t type, char *buf, int buflen) __THROW;
 +
 +__END_DECLS
 +
@@ -8132,7 +8132,7 @@
 +#include <sys/sysctl.h>
 +
 +char *
-+__devname_r(dev_t dev, mode_t type, char *buf, int len)
++__devname_r(__dev_t dev, __mode_t type, char *buf, int len)
 +{
 +	int i;
 +	size_t j;
@@ -8157,7 +8157,7 @@
 +
 +
 +char *
-+__devname(dev_t dev, mode_t type)
++__devname(__dev_t dev, __mode_t type)
 +{
 +	static char buf[SPECNAMELEN + 1];
 +


Reply to: