]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Fix wrong comment.
authorBruno Haible <bruno@clisp.org>
Mon, 6 Nov 2006 14:42:57 +0000 (14:42 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:14:19 +0000 (12:14 +0200)
gnulib-local/ChangeLog
gnulib-local/lib/canonicalize.h

index b4a2efcc383be8a3b5a6afd9be4eceb520869ed7..81b3c9285c2453845c8cd8fc5886f8d20e7138c4 100644 (file)
@@ -1,3 +1,8 @@
+2006-11-06  Bruno Haible  <bruno@clisp.org>
+
+       * lib/canonicalize.h (canonicalize_file_name): Fix wrong comment
+       borrowed from glibc.
+
 2006-11-02  Bruno Haible  <bruno@clisp.org>
 
        * lib/xalloc.h (xnmalloc): New declaration. From gnulib xalloc.h.
index 4e9084cd91b60367fbcc724c100e1d06f91fd150..e54752f0587bd6cd76f2be4f6069e0a9c7d95526 100644 (file)
@@ -1,5 +1,5 @@
 /* Return the canonical absolute name of a given file.
-   Copyright (C) 2003 Free Software Foundation, Inc.
+   Copyright (C) 2003, 2006 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -16,6 +16,6 @@
    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 
 /* Return a malloc'd string containing the canonical absolute name of the
-   named file.  The last file name component need not exist, and may be a
-   symlink to a nonexistent file.  */ 
+   named file.  If any file name component does not exist or is a symlink
+   to a nonexistent file, return NULL.  */
 extern char *canonicalize_file_name (const char *name);