changeset 16208:b9e251ade13d

canonicalize: Tweak 2011-12-29 commit. * lib/canonicalize.c (canonicalize_filename_mode): Fix typo in comment. * lib/canonicalize.h (canonicalize_filename_mode): Update specification.
author Bruno Haible <bruno@clisp.org>
date Tue, 03 Jan 2012 01:08:24 +0100
parents 6b7ceb24d0d9
children 93b0d3ad505e
files ChangeLog lib/canonicalize.c lib/canonicalize.h
diffstat 3 files changed, 13 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2012-01-02  Bruno Haible  <bruno@clisp.org>
+
+	canonicalize: Tweak 2011-12-29 commit.
+	* lib/canonicalize.c (canonicalize_filename_mode): Fix typo in comment.
+	* lib/canonicalize.h (canonicalize_filename_mode): Update specification.
+
 2012-01-02  Jim Meyering  <meyering@redhat.com>
 
 	gitlog-to-changelog: describe input syntax in --help output
--- a/lib/canonicalize.c
+++ b/lib/canonicalize.c
@@ -84,7 +84,7 @@
 /* Return the canonical absolute name of file NAME, while treating
    missing elements according to CAN_MODE.  A canonical name
    does not contain any `.', `..' components nor any repeated file name
-   separators ('/') or, depdending on other CAN_MODE flags, symlinks.
+   separators ('/') or, depending on other CAN_MODE flags, symlinks.
    Whether components must exist or not depends on canonicalize mode.
    The result is malloc'd.  */
 
--- a/lib/canonicalize.h
+++ b/lib/canonicalize.h
@@ -37,10 +37,12 @@
   };
 typedef enum canonicalize_mode_t canonicalize_mode_t;
 
-/* Return a malloc'd string containing the canonical absolute name of
-   the named file.  This acts like canonicalize_file_name, except that
-   whether components must exist depends on the canonicalize_mode_t
-   argument.  */
+/* Return the canonical absolute name of file NAME, while treating
+   missing elements according to CAN_MODE.  A canonical name
+   does not contain any `.', `..' components nor any repeated file name
+   separators ('/') or, depending on other CAN_MODE flags, symlinks.
+   Whether components must exist or not depends on canonicalize mode.
+   The result is malloc'd.  */
 char *canonicalize_filename_mode (const char *, canonicalize_mode_t);
 
 #endif /* !CANONICALIZE_H_ */