Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2000-07-12 21:02:35 +0400
committerMatt Kraai <kraai@debian.org>2000-07-12 21:02:35 +0400
commitbe84cd4ef66f8956eb4c7ff0542fd1ba823a70e7 (patch)
tree088bc5b6e06d693ad8ca3eba078c0f3a8e302a24 /messages.c
parente58771e73c0d8589a458ede4088f5ba70eff917b (diff)
Always report the applet name when doing error reporting.
Diffstat (limited to 'messages.c')
-rw-r--r--messages.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/messages.c b/messages.c
index cb8de4077..f2374eeb5 100644
--- a/messages.c
+++ b/messages.c
@@ -57,10 +57,10 @@
BB_DEF_MESSAGE(not_a_directory, "%s: %s: not a directory\n")
#endif
#if defined bb_need_memory_exhausted || ! defined BB_DECLARE_EXTERN
- BB_DEF_MESSAGE(memory_exhausted, "%s: memory exhausted\n")
+ BB_DEF_MESSAGE(memory_exhausted, "memory exhausted\n")
#endif
#if defined bb_need_invalid_date || ! defined BB_DECLARE_EXTERN
- BB_DEF_MESSAGE(invalid_date, "%s: invalid date `%s'\n")
+ BB_DEF_MESSAGE(invalid_date, "invalid date `%s'\n")
#endif
#if defined bb_need_invalid_option || ! defined BB_DECLARE_EXTERN
BB_DEF_MESSAGE(invalid_option, "%s: invalid option -- %c\n")