]> git.ipfire.org Git - thirdparty/rsync.git/commitdiff
Improved a comment.
authorWayne Davison <wayned@samba.org>
Thu, 12 Aug 2004 00:58:01 +0000 (00:58 +0000)
committerWayne Davison <wayned@samba.org>
Thu, 12 Aug 2004 00:58:01 +0000 (00:58 +0000)
util.c

diff --git a/util.c b/util.c
index 829bad6cd36c3cff49109f8abfb35c6f62f699b7..03134e9fa53be38d4babe8383ef12328c64483ff 100644 (file)
--- a/util.c
+++ b/util.c
@@ -664,10 +664,10 @@ int count_dir_elements(const char *p)
        return cnt;
 }
 
-/* Turns multiple adjacent slashes into a single slash, gets rid of "./"
- * elements, collapses ".." elements except for those at the start of
- * the string. If the resulting path would be empty, change it into a
- * ".". */
+/* Turns multiple adjacent slashes into a single slash; gets rid of "./"
+ * elements; collapses ".." elements except for those at the start of the
+ * string; removes a trailing slash.  If the resulting name would be empty,
+ * change it into a ".". */
 unsigned int clean_fname(char *name)
 {
        char *limit = name - 1, *t = name, *f = name;