]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(remove_file): Remove `non-directory' part of
authorJim Meyering <jim@meyering.net>
Sat, 27 Jun 1998 04:39:25 +0000 (04:39 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 27 Jun 1998 04:39:25 +0000 (04:39 +0000)
`removing non-directory FILE' verbose message.

src/remove.c

index c7bb679bad482997dd8a0c6787445077b5618a96..7a6585bd10e593c69531f76aafa3de10467d26eb 100644 (file)
@@ -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))
     {