changeset 29288:e3a12c57bb81

* lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive: s/S_ISNLK/S_ISLNK/.
author Colin Watson <cjwatson@debian.org>
date Thu, 10 Jan 2008 10:16:08 +0100
parents e84e06c34785
children 7850ebd7b91c
files ChangeLog lib/canonicalize-lgpl.c
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Thu Jan 10 02:52:02 2008 +0100
+++ b/ChangeLog	Thu Jan 10 10:16:08 2008 +0100
@@ -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
--- a/lib/canonicalize-lgpl.c	Thu Jan 10 02:52:02 2008 +0100
+++ b/lib/canonicalize-lgpl.c	Thu Jan 10 10:16:08 2008 +0100
@@ -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