diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-03 21:00:43 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-03 21:00:43 +0000 |
commit | 8f8f268cfdecb4cabeb2e649a73afc7a485aeff5 (patch) | |
tree | 8c555cc94aca9fabd177526e554d93bed4886642 /applets/applets.c | |
parent | 67b23e6043d8e2b30b0bf3bc105b8583c2a26db5 (diff) | |
download | busybox-w32-8f8f268cfdecb4cabeb2e649a73afc7a485aeff5.tar.gz busybox-w32-8f8f268cfdecb4cabeb2e649a73afc7a485aeff5.tar.bz2 busybox-w32-8f8f268cfdecb4cabeb2e649a73afc7a485aeff5.zip |
bb_applet_name -> applet_name
Diffstat (limited to 'applets/applets.c')
-rw-r--r-- | applets/applets.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/applets.c b/applets/applets.c index d5b2672a0..d615ffcd8 100644 --- a/applets/applets.c +++ b/applets/applets.c | |||
@@ -469,7 +469,7 @@ void run_applet_by_name(const char *name, int argc, char **argv) | |||
469 | /* Do a binary search to find the applet entry given the name. */ | 469 | /* Do a binary search to find the applet entry given the name. */ |
470 | applet_using = find_applet_by_name(name); | 470 | applet_using = find_applet_by_name(name); |
471 | if (applet_using) { | 471 | if (applet_using) { |
472 | bb_applet_name = applet_using->name; | 472 | applet_name = applet_using->name; |
473 | if(argc==2 && !strcmp(argv[1], "--help")) bb_show_usage(); | 473 | if(argc==2 && !strcmp(argv[1], "--help")) bb_show_usage(); |
474 | if(ENABLE_FEATURE_SUID) check_suid(applet_using); | 474 | if(ENABLE_FEATURE_SUID) check_suid(applet_using); |
475 | exit((*(applet_using->main))(argc, argv)); | 475 | exit((*(applet_using->main))(argc, argv)); |