aboutsummaryrefslogtreecommitdiff
path: root/applets
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-10-03 21:00:43 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-10-03 21:00:43 +0000
commit8f8f268cfdecb4cabeb2e649a73afc7a485aeff5 (patch)
tree8c555cc94aca9fabd177526e554d93bed4886642 /applets
parent67b23e6043d8e2b30b0bf3bc105b8583c2a26db5 (diff)
downloadbusybox-8f8f268cfdecb4cabeb2e649a73afc7a485aeff5.tar.gz
bb_applet_name -> applet_name
Diffstat (limited to 'applets')
-rw-r--r--applets/applets.c2
-rw-r--r--applets/busybox.c15
-rw-r--r--applets/individual.c4
3 files changed, 11 insertions, 10 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)
/* Do a binary search to find the applet entry given the name. */
applet_using = find_applet_by_name(name);
if (applet_using) {
- bb_applet_name = applet_using->name;
+ applet_name = applet_using->name;
if(argc==2 && !strcmp(argv[1], "--help")) bb_show_usage();
if(ENABLE_FEATURE_SUID) check_suid(applet_using);
exit((*(applet_using->main))(argc, argv));
diff --git a/applets/busybox.c b/applets/busybox.c
index 53eb363ac..625a492f2 100644
--- a/applets/busybox.c
+++ b/applets/busybox.c
@@ -6,7 +6,7 @@
*/
#include "busybox.h"
-const char *bb_applet_name ATTRIBUTE_EXTERNALLY_VISIBLE;
+const char *applet_name ATTRIBUTE_EXTERNALLY_VISIBLE;
#ifdef CONFIG_FEATURE_INSTALLER
/*
@@ -59,16 +59,16 @@ int main(int argc, char **argv)
{
const char *s;
- bb_applet_name=argv[0];
- if (*bb_applet_name == '-') bb_applet_name++;
- for (s = bb_applet_name; *s ;)
- if (*(s++) == '/') bb_applet_name = s;
+ applet_name=argv[0];
+ if (*applet_name == '-') applet_name++;
+ for (s = applet_name; *s ;)
+ if (*(s++) == '/') applet_name = s;
/* Set locale for everybody except `init' */
if(ENABLE_LOCALE_SUPPORT && getpid() != 1)
setlocale(LC_ALL, "");
- run_applet_by_name(bb_applet_name, argc, argv);
+ run_applet_by_name(applet_name, argc, argv);
bb_error_msg_and_die("applet not found");
}
@@ -106,7 +106,8 @@ int busybox_main(int argc, char **argv)
if (argc==1 || !strcmp(argv[1],"--help") ) {
if (argc>2) {
- run_applet_by_name(bb_applet_name=argv[2], 2, argv);
+ applet_name = argv[2];
+ run_applet_by_name(applet_name, 2, argv);
} else {
const struct BB_applet *a;
int col, output_width;
diff --git a/applets/individual.c b/applets/individual.c
index 911f760a6..b5d1e1298 100644
--- a/applets/individual.c
+++ b/applets/individual.c
@@ -5,7 +5,7 @@
* Licensed under GPL version 2, see file LICENSE in this tarball for details
*/
-const char *bb_applet_name;
+const char *applet_name;
#include <stdio.h>
#include <stdlib.h>
@@ -14,7 +14,7 @@ const char *bb_applet_name;
int main(int argc, char *argv[])
{
- bb_applet_name=argv[0];
+ applet_name=argv[0];
return APPLET_main(argc,argv);
}