From: Jim Meyering Date: Thu, 7 Dec 2000 14:11:52 +0000 (+0000) Subject: convert a > expression to the equivalent < one X-Git-Tag: cvs-readonly~6133 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=38b8fad546a66fb6e851b0bf8ab22bc22b9be35a;p=gnulib.git convert a > expression to the equivalent < one --- diff --git a/lib/dirname.c b/lib/dirname.c index 7826d8edb..94f8c8936 100644 --- a/lib/dirname.c +++ b/lib/dirname.c @@ -113,7 +113,7 @@ dir_name_r (char const *path, char const **result) canonicalized "d:/path", leave alone the root case "d:/". */ char const *lim = path + FILESYSTEM_PREFIX_LEN (path); - while (slash > lim && ISSLASH (*slash)) + while (lim < slash && ISSLASH (*slash)) --slash; length = slash - path + 1; diff --git a/lib/stripslash.c b/lib/stripslash.c index 9c0ad3d62..f55c76912 100644 --- a/lib/stripslash.c +++ b/lib/stripslash.c @@ -19,12 +19,16 @@ # include #endif -#if defined(STDC_HEADERS) || defined(HAVE_STRING_H) +#if STDC_HEADERS || HAVE_STRING_H # include #else # include #endif +#ifndef ISSLASH +# define ISSLASH(C) ((C) == '/') +#endif + /* Remove trailing slashes from PATH. This is useful when using filename completion from a shell that adds a "/" after directory names (such as tcsh and bash), because @@ -37,6 +41,6 @@ strip_trailing_slashes (char *path) int last; last = strlen (path) - 1; - while (last > 0 && path[last] == '/') + while (0 < last && ISSLASH (path[last])) path[last--] = '\0'; }