From: Bruno Haible Date: Mon, 6 Nov 2006 14:42:57 +0000 (+0000) Subject: Fix wrong comment. X-Git-Tag: v0.17~679 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6d4133366a1a308e00cf5877f64aaf5425ca0945;p=thirdparty%2Fgettext.git Fix wrong comment. --- diff --git a/gnulib-local/ChangeLog b/gnulib-local/ChangeLog index b4a2efcc3..81b3c9285 100644 --- a/gnulib-local/ChangeLog +++ b/gnulib-local/ChangeLog @@ -1,3 +1,8 @@ +2006-11-06 Bruno Haible + + * lib/canonicalize.h (canonicalize_file_name): Fix wrong comment + borrowed from glibc. + 2006-11-02 Bruno Haible * lib/xalloc.h (xnmalloc): New declaration. From gnulib xalloc.h. diff --git a/gnulib-local/lib/canonicalize.h b/gnulib-local/lib/canonicalize.h index 4e9084cd9..e54752f05 100644 --- a/gnulib-local/lib/canonicalize.h +++ b/gnulib-local/lib/canonicalize.h @@ -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);