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

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



Author: aurel32
Date: 2011-12-19 15:11:32 +0000 (Mon, 19 Dec 2011)
New Revision: 5099

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/hurd-i386/tg-struct_stat.diff
Log:
  * patches/hurd/tg-struct_stat.diff: fix #ifdef typos.



Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog	2011-12-19 13:27:45 UTC (rev 5098)
+++ glibc-package/trunk/debian/changelog	2011-12-19 15:11:32 UTC (rev 5099)
@@ -11,6 +11,7 @@
     packages to avoid conflicts with multiarch.
   * sysdeps/armel.mk, sysdeps/armhf.mk: fix cross compiling.
   * Update Dutch debconf translation, by Jeroen Schot.  Closes: #652632.
+  * patches/hurd/tg-struct_stat.diff: fix #ifdef typos.
 
  -- Aurelien Jarno <aurel32@debian.org>  Wed, 14 Dec 2011 00:42:25 +0100
 

Modified: glibc-package/trunk/debian/patches/hurd-i386/tg-struct_stat.diff
===================================================================
--- glibc-package/trunk/debian/patches/hurd-i386/tg-struct_stat.diff	2011-12-19 13:27:45 UTC (rev 5098)
+++ glibc-package/trunk/debian/patches/hurd-i386/tg-struct_stat.diff	2011-12-19 15:11:32 UTC (rev 5099)
@@ -39,7 +39,7 @@
 -    unsigned long int st_mtime_usec; /* and microseconds.  */
 -    __time_t st_ctime;		/* Status change time, seconds */
 -    unsigned long int st_ctime_usec; /* and microseconds.  */
-+#ifdef __USE_MISC || __USE_XOPEN2K8
++#if defined(__USE_MISC) || defined(__USE_XOPEN2K8)
 +    /* Nanosecond resolution timestamps are stored in a format
 +       equivalent to 'struct timespec'.  This is the type used
 +       whenever possible but the Unix namespace rules do not allow the
@@ -73,7 +73,7 @@
 -    unsigned long int st_mtime_usec; /* and microseconds.  */
 -    __time_t st_ctime;		/* Status change time, seconds */
 -    unsigned long int st_ctime_usec; /* and microseconds.  */
-+#ifdef __USE_MISC || __USE_XOPEN2K8
++#if defined(__USE_MISC) || defined(__USE_XOPEN2K8)
 +    /* Nanosecond resolution timestamps are stored in a format
 +       equivalent to 'struct timespec'.  This is the type used
 +       whenever possible but the Unix namespace rules do not allow the


Reply to: