diff options
author | Simon B <sburnet@hotmail.com> | 2012-05-06 13:18:35 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2012-05-06 13:18:35 +0200 |
commit | 44642d1ec15edf4a4448085849105ec93fa01ef2 (patch) | |
tree | fdc992e9609cef515c28e631d4424063034b2812 /libbb/remove_file.c | |
parent | 556ac3633ce3e7bd51c93b78827ae3874d856257 (diff) |
ln: support -T and -v
function old new delta
ln_main 445 524 +79
packed_usage 29182 29179 -3
Signed-off-by: Simon B <sburnet@hotmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb/remove_file.c')
-rw-r--r-- | libbb/remove_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/remove_file.c b/libbb/remove_file.c index c6531a0b9..5b75f7f30 100644 --- a/libbb/remove_file.c +++ b/libbb/remove_file.c @@ -33,7 +33,7 @@ int FAST_FUNC remove_file(const char *path, int flags) int status = 0; if (!(flags & FILEUTILS_RECUR)) { - bb_error_msg("%s: is a directory", path); + bb_error_msg("'%s' is a directory", path); return -1; } |