summaryrefslogtreecommitdiff
path: root/src/remove.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1998-06-27 04:39:25 +0000
committerJim Meyering <jim@meyering.net>1998-06-27 04:39:25 +0000
commitd200f4974b08187a104995b83d0811cb3ab81e9f (patch)
treeaf296928fbe1efc76e55435e2877d008767f55dd /src/remove.c
parentde45950430855cdff58bca4f721c24ccd9e237d2 (diff)
downloadcoreutils-d200f4974b08187a104995b83d0811cb3ab81e9f.tar.xz
(remove_file): Remove `non-directory' part of
`removing non-directory FILE' verbose message.
Diffstat (limited to 'src/remove.c')
-rw-r--r--src/remove.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remove.c b/src/remove.c
index c7bb679ba..7a6585bd1 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))
{