diff options
author | Pavel Roskin <proski@gnu.org> | 2000-07-17 23:45:12 +0000 |
---|---|---|
committer | Pavel Roskin <proski@gnu.org> | 2000-07-17 23:45:12 +0000 |
commit | 9c5fcc3408626c46bc5187554e950b981143bb38 (patch) | |
tree | fef8c909479641fa6828a08efb988cf6f4ed9c8a /utility.c | |
parent | cc8a66b113dbdf04082b6f7c9b0b58984d433028 (diff) | |
download | busybox-w32-9c5fcc3408626c46bc5187554e950b981143bb38.tar.gz busybox-w32-9c5fcc3408626c46bc5187554e950b981143bb38.tar.bz2 busybox-w32-9c5fcc3408626c46bc5187554e950b981143bb38.zip |
New message added to messages.c: full_version
Used where possible
Diffstat (limited to 'utility.c')
-rw-r--r-- | utility.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -37,6 +37,7 @@ | |||
37 | #define bb_need_name_too_long | 37 | #define bb_need_name_too_long |
38 | #endif | 38 | #endif |
39 | #define bb_need_memory_exhausted | 39 | #define bb_need_memory_exhausted |
40 | #define bb_need_full_version | ||
40 | #define BB_DECLARE_EXTERN | 41 | #define BB_DECLARE_EXTERN |
41 | #include "messages.c" | 42 | #include "messages.c" |
42 | 43 | ||
@@ -84,8 +85,7 @@ const char mtab_file[] = "/dev/mtab"; | |||
84 | 85 | ||
85 | extern void usage(const char *usage) | 86 | extern void usage(const char *usage) |
86 | { | 87 | { |
87 | fprintf(stderr, "BusyBox v%s (%s) multi-call binary -- GPL2\n\n", | 88 | fprintf(stderr, "%s\n\n", full_version); |
88 | BB_VER, BB_BT); | ||
89 | fprintf(stderr, "Usage: %s\n", usage); | 89 | fprintf(stderr, "Usage: %s\n", usage); |
90 | exit FALSE; | 90 | exit FALSE; |
91 | } | 91 | } |