aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debianutils/which.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debianutils/which.c b/debianutils/which.c
index 86dd5c352..af33ba72e 100644
--- a/debianutils/which.c
+++ b/debianutils/which.c
@@ -46,7 +46,7 @@ int which_main(int argc UNUSED_PARAM, char **argv)
46 char *p; 46 char *p;
47 47
48#if ENABLE_FEATURE_PREFER_APPLETS 48#if ENABLE_FEATURE_PREFER_APPLETS
49 if ( find_applet_by_name(*argv) >= 0 ) { 49 if (find_applet_by_name(*argv) >= 0 || strcmp(*argv, "busybox") == 0) {
50 missing = 0; 50 missing = 0;
51 puts(*argv); 51 puts(*argv);
52 if (!option_mask32) /* -a not set */ 52 if (!option_mask32) /* -a not set */