aboutsummaryrefslogtreecommitdiff
path: root/findutils
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2000-07-14 23:28:47 +0000
committerMatt Kraai <kraai@debian.org>2000-07-14 23:28:47 +0000
commit3bd8bd89ee9d0b65bf279e1ecad826a5f2f0a217 (patch)
tree6a217bf17e7c00e98a47f657015535f21b53cedd /findutils
parent464c5de00d3dfb5f01e866f703d95bbb2bb9443c (diff)
downloadbusybox-w32-3bd8bd89ee9d0b65bf279e1ecad826a5f2f0a217.tar.gz
busybox-w32-3bd8bd89ee9d0b65bf279e1ecad826a5f2f0a217.tar.bz2
busybox-w32-3bd8bd89ee9d0b65bf279e1ecad826a5f2f0a217.zip
Don't use strings directly in calls to usage(). This is in preparation
for their extraction to a separate file.
Diffstat (limited to 'findutils')
-rw-r--r--findutils/which.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/findutils/which.c b/findutils/which.c
index 8d4422a78..186bfdad7 100644
--- a/findutils/which.c
+++ b/findutils/which.c
@@ -26,6 +26,12 @@
26#include <sys/stat.h> 26#include <sys/stat.h>
27#include <sys/param.h> 27#include <sys/param.h>
28 28
29const char which_usage[] =
30 "which [COMMAND ...]\n"
31#ifndef BB_FEATURE_TRIVIAL_HELP
32 "\nLocates a COMMAND.\n"
33#endif
34 ;
29 35
30extern int which_main(int argc, char **argv) 36extern int which_main(int argc, char **argv)
31{ 37{
@@ -34,13 +40,8 @@ extern int which_main(int argc, char **argv)
34 struct stat filestat; 40 struct stat filestat;
35 int count = 0; 41 int count = 0;
36 42
37 if (argc <= 1 || **(argv + 1) == '-') { 43 if (argc <= 1 || **(argv + 1) == '-')
38 usage("which [COMMAND ...]\n" 44 usage(which_usage);
39#ifndef BB_FEATURE_TRIVIAL_HELP
40 "\nLocates a COMMAND.\n"
41#endif
42 );
43 }
44 argc--; 45 argc--;
45 46
46 path_list = getenv("PATH"); 47 path_list = getenv("PATH");