From: Jim Meyering Date: Sat, 27 Jun 1998 04:39:25 +0000 (+0000) Subject: (remove_file): Remove `non-directory' part of X-Git-Tag: FILEUTILS-3_16q~80 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d200f4974b08187a104995b83d0811cb3ab81e9f;p=thirdparty%2Fcoreutils.git (remove_file): Remove `non-directory' part of `removing non-directory FILE' verbose message. --- diff --git a/src/remove.c b/src/remove.c index c7bb679bad..7a6585bd10 100644 --- a/src/remove.c +++ b/src/remove.c @@ -625,7 +625,7 @@ remove_file (struct File_spec *fs, const struct rm_options *x) } if (x->verbose) - printf (_("removing non-directory %s\n"), full_filename (pathname)); + printf (_("removing %s\n"), full_filename (pathname)); if (unlink (pathname) && (errno != ENOENT || !x->ignore_missing_files)) {