From: Jim Meyering Date: Sat, 15 Sep 2001 11:14:09 +0000 (+0000) Subject: (main): Don't strip trailing slashes; POSIX doesn't allow it here. X-Git-Tag: TEXTUTILS-2_0_15~112 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=099fd9e8f05e5c651aad6bda4896f782eb586e2c;p=thirdparty%2Fcoreutils.git (main): Don't strip trailing slashes; POSIX doesn't allow it here. Don't include "dirname.h" when no longer needed. --- diff --git a/src/rm.c b/src/rm.c index 40a273da28..5ffde0deb2 100644 --- a/src/rm.c +++ b/src/rm.c @@ -50,7 +50,6 @@ #include #include "system.h" -#include "dirname.h" #include "error.h" #include "remove.h" #include "save-cwd.h" @@ -188,9 +187,6 @@ main (int argc, char **argv) struct File_spec fs; enum RM_status status; - /* Stripping slashes is harmless for rmdir; - if the arg is not a directory, it will fail with ENOTDIR. */ - strip_trailing_slashes (argv[optind]); fspec_init_file (&fs, argv[optind]); status = rm (&fs, 1, &x); assert (VALID_STATUS (status));