From: Wayne Davison Date: Thu, 12 Aug 2004 00:58:01 +0000 (+0000) Subject: Improved a comment. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/0219d4dfbacc660e97b357831ef6312e77d10387 Improved a comment. --- diff --git a/util.c b/util.c index 829bad6c..03134e9f 100644 --- 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;