* lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
authorColin Watson <cjwatson@debian.org>
Thu, 10 Jan 2008 09:16:08 +0000 (10:16 +0100)
committerJim Meyering <meyering@redhat.com>
Thu, 10 Jan 2008 09:16:08 +0000 (10:16 +0100)
s/S_ISNLK/S_ISLNK/.

ChangeLog
lib/canonicalize-lgpl.c

index b1dc59d995ba8ce77149b570dd07ac39f443f26b..7ab6e166d2c522297030aeffc2396efe3c4c771f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-01-10   Colin Watson  <cjwatson@debian.org>
+
+       * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
+       s/S_ISNLK/S_ISLNK/.
+
 2008-01-09  Bruno Haible  <bruno@clisp.org>
 
        * doc/functions/memmem.texi: Use the same structure as snprintf.texi
index e8d2b65ebc82b2a1f8aa9eac982a901822985c6b..2aebbc6e2af6d114b3275b609772ee4078eb098e 100644 (file)
@@ -78,7 +78,7 @@
 # endif
 # define __readlink readlink
   /* On systems without symbolic links, call stat() instead of lstat().  */
-# if !defined S_ISNLK && !HAVE_READLINK
+# if !defined S_ISLNK && !HAVE_READLINK
 #  define lstat stat
 # endif
 #endif