bb_applet_name -> applet_name
authorDenis Vlasenko <vda.linux@googlemail.com>
Tue, 3 Oct 2006 21:00:43 +0000 (21:00 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Tue, 3 Oct 2006 21:00:43 +0000 (21:00 -0000)
45 files changed:
applets/applets.c
applets/busybox.c
applets/individual.c
archival/bunzip2.c
archival/gunzip.c
archival/unlzma.c
coreutils/cut.c
coreutils/dos2unix.c
docs/busybox.net/FAQ.html
e2fsprogs/mke2fs.c
e2fsprogs/tune2fs.c
findutils/grep.c
findutils/xargs.c
include/libbb.h
init/halt.c
init/init.c
init/init_shared.c
libbb/copy_file.c
libbb/remove_file.c
libbb/verror_msg.c
loginutils/deluser.c
loginutils/getty.c
loginutils/login.c
loginutils/su.c
loginutils/sulogin.c
miscutils/crond.c
miscutils/devfsd.c
networking/fakeidentd.c
networking/ftpgetput.c
networking/ifupdown.c
networking/inetd.c
networking/nameif.c
networking/telnetd.c
networking/traceroute.c
networking/udhcp/common.c
networking/zcip.c
procps/kill.c
runit/chpst.c
shell/ash.c
shell/cmdedit.c
shell/lash.c
util-linux/freeramdisk.c
util-linux/fsck_minix.c
util-linux/mount.c
util-linux/swaponoff.c

index d5b2672a0ffb6189d25949b976fb10ae6cd92164..d615ffcd8614298941ec6e47e75341d4c7347e45 100644 (file)
@@ -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));
index 53eb363ac70ab77655821829e0613685d8675815..625a492f2c3a0af86c14b44771abfae0a48eadaa 100644 (file)
@@ -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;
index 911f760a67aa124ab4648e3f41b4d260485d6e37..b5d1e1298314b928844be3a971ea9c535fa027ee 100644 (file)
@@ -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);
 }
index faf997bbe73a93eeafb9d88ed8737295a08d4fe2..85f2343df5171b783e334cf6af94945cb9ba294f 100644 (file)
@@ -32,7 +32,7 @@ int bunzip2_main(int argc, char **argv)
        }
 
        /* if called as bzcat force the stdout flag */
-       if ((opt & BUNZIP2_OPT_STDOUT) || bb_applet_name[2] == 'c')
+       if ((opt & BUNZIP2_OPT_STDOUT) || applet_name[2] == 'c')
                filename = 0;
 
        /* Check that the input is sane.  */
index 1cde08b4d19c703301431f133f7d6418eab2d6d5..396ce4f5c9c8be421223a3d455e4eab3f4c7ed86 100644 (file)
@@ -44,7 +44,7 @@ int gunzip_main(int argc, char **argv)
 
        opt = getopt32(argc, argv, "cftdv");
        /* if called as zcat */
-       if (strcmp(bb_applet_name, "zcat") == 0) {
+       if (strcmp(applet_name, "zcat") == 0) {
                opt |= GUNZIP_OPT_STDOUT;
        }
 
index 20891e316ddff4be9b16e2f33c3747f079a1ddec..46fbefdc0884748ef28747b6dde821fb6389938f 100644 (file)
@@ -35,7 +35,7 @@ int unlzma_main(int argc, char **argv)
        }
 
        /* if called as lzmacat force the stdout flag */
-       if ((opt & UNLZMA_OPT_STDOUT) || bb_applet_name[4] == 'c')
+       if ((opt & UNLZMA_OPT_STDOUT) || applet_name[4] == 'c')
                filename = 0;
 
        if (filename) {
index 30dbc02dbecf0eceb8c014fa41be525abbd07e94..69f28fa8de2309108cfb3f128eef4312e7a7a98c 100644 (file)
@@ -13,6 +13,7 @@
 
 /* option vars */
 static const char optstring[] = "b:c:f:d:sn";
+
 #define CUT_OPT_BYTE_FLGS      (1<<0)
 #define CUT_OPT_CHAR_FLGS      (1<<1)
 #define CUT_OPT_FIELDS_FLGS    (1<<2)
index a8038a6dd3aa92ecefe544a6cddf17c69dd776ef..1ed8771c0fe3a83cc57cce21114fcc49837ffa70 100644 (file)
@@ -87,7 +87,7 @@ int dos2unix_main(int argc, char *argv[])
        int o;
 
        /* See if we are supposed to be doing dos2unix or unix2dos */
-       if (bb_applet_name[0] == 'd') {
+       if (applet_name[0] == 'd') {
                ConvType = CT_DOS2UNIX; /*2 */
        } else {
                ConvType = CT_UNIX2DOS; /*1 */
index af20366b63d4bc8ae5f338faabc512dff572f430..2865ba10877c3c8a6c7a287541bf3bb95fca2e7d 100644 (file)
@@ -521,7 +521,7 @@ busybox.c), and several subdirectories containing the code for the individual
 applets.</p>
 
 <p>Busybox execution starts with the main() function in applets/busybox.c,
-which sets the global variable bb_applet_name to argv[0] and calls
+which sets the global variable applet_name to argv[0] and calls
 run_applet_by_name() in applets/applets.c.  That uses the applets[] array
 (defined in include/busybox.h and filled out in include/applets.h) to
 transfer control to the appropriate APPLET_main() function (such as
index 72ce574589d5ac2a58780a4ea833d1456d004b49..f2cce75a306791edadb00be5d07db91f3812d92b 100644 (file)
@@ -841,7 +841,7 @@ static int PRS(int argc, char *argv[])
 #endif
 
        /* If called as mkfs.ext3, create a journal inode */
-       if (last_char_is(bb_applet_name, '3'))
+       if (last_char_is(applet_name, '3'))
                journal_size = -1;
 
        while ((c = getopt (argc, argv,
index d64c1286066d9d57fa293dc95624d8bd1f3de9ed..9bd6f4c7ec93f9b4781d7cc63113c3eacca959ea 100644 (file)
@@ -596,9 +596,9 @@ int tune2fs_main(int argc, char **argv)
        if (ENABLE_FEATURE_CLEAN_UP)
                atexit(tune2fs_clean_up);
 
-       if (ENABLE_FINDFS && (bb_applet_name[0] == 'f')) /* findfs */
+       if (ENABLE_FINDFS && (applet_name[0] == 'f')) /* findfs */
                do_findfs(argc, argv);  /* no return */
-       else if (ENABLE_E2LABEL && (bb_applet_name[0] == 'e')) /* e2label */
+       else if (ENABLE_E2LABEL && (applet_name[0] == 'e')) /* e2label */
                parse_e2label_options(argc, argv);
        else
                parse_tune2fs_options(argc, argv);  /* tune2fs */
index 35e6aff2d2040fc57872e5a86be9fb10ea338bc5..ce975e771269d5b929a9d753deea76d206c71c00 100644 (file)
@@ -356,14 +356,14 @@ int grep_main(int argc, char **argv)
        if (opt & GREP_OPT_f)
                load_regexes_from_file(fopt);
 
-       if (ENABLE_FEATURE_GREP_FGREP_ALIAS && bb_applet_name[0] == 'f')
+       if (ENABLE_FEATURE_GREP_FGREP_ALIAS && applet_name[0] == 'f')
                opt |= GREP_OPT_F;
 
        if (!(opt & GREP_OPT_o))
                reflags = REG_NOSUB;
 
        if (ENABLE_FEATURE_GREP_EGREP_ALIAS &&
-                       (bb_applet_name[0] == 'e' || (opt & GREP_OPT_E)))
+                       (applet_name[0] == 'e' || (opt & GREP_OPT_E)))
                reflags |= REG_EXTENDED;
 
        if (opt & GREP_OPT_i)
index 278382373946dff85481c36ddb03935ea0b5493c..81997b6f69fbc0b6df287bcd0cb6939f567a1871 100644 (file)
@@ -523,12 +523,12 @@ int xargs_main(int argc, char **argv)
 
 #ifdef TEST
 
-const char *bb_applet_name = "debug stuff usage";
+const char *applet_name = "debug stuff usage";
 
 void bb_show_usage(void)
 {
        fprintf(stderr, "Usage: %s [-p] [-r] [-t] -[x] [-n max_arg] [-s max_chars]\n",
-               bb_applet_name);
+               applet_name);
        exit(1);
 }
 
index 4e96ea4152e7fc7e6c98d92769b1d4227c74e8ea..88847ac599a43dbdaa51c94eefe9521f71f89829 100644 (file)
@@ -372,7 +372,7 @@ enum {      /* DO NOT CHANGE THESE VALUES!  cp.c depends on them. */
        FILEUTILS_INTERACTIVE = 16
 };
 
-extern const char *bb_applet_name;
+extern const char *applet_name;
 
 extern const char bb_msg_full_version[];
 extern const char bb_msg_memory_exhausted[];
index d796a4aea6f0053e32c40c091e2d0c40c807463f..2ac210e59aca76e8afd62e07ba68fe226b281c79 100644 (file)
@@ -31,7 +31,7 @@ RB_AUTOBOOT
        int which, flags, rc = 1;
 
        /* Figure out which applet we're running */
-       for(which=0;delay[which]!=*bb_applet_name;which++);
+       for(which=0;delay[which]!=*applet_name;which++);
 
        /* Parse and handle arguments */
        flags = getopt32(argc, argv, "d:nf", &delay);
index d7d14a2d54eb3472fb310b881b64cb333a1264a5..8257b7fb0cc3b20ce9eaf484793e604257f9e048 100644 (file)
@@ -195,7 +195,7 @@ static void message(int device, const char *fmt, ...)
        /* Log the message to syslogd */
        if (device & LOG) {
                /* don`t out "\r\n" */
-               openlog(bb_applet_name, 0, LOG_DAEMON);
+               openlog(applet_name, 0, LOG_DAEMON);
                syslog(LOG_INFO, "%s", msg + 1);
                closelog();
        }
@@ -982,7 +982,7 @@ int init_main(int argc, char **argv)
 #if !ENABLE_DEBUG_INIT
        /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
        if (getpid() != 1 &&
-               (!ENABLE_FEATURE_INITRD || !strstr(bb_applet_name, "linuxrc")))
+               (!ENABLE_FEATURE_INITRD || !strstr(applet_name, "linuxrc")))
        {
                bb_show_usage();
        }
index 5e46abf09749920b43aa2ea7b8835be33600c1e3..47480fc212c24e8cfe18ef9f175d89a3b899add5 100644 (file)
@@ -31,7 +31,7 @@ int bb_shutdown_system(unsigned long magic)
 #endif
        reboot(RB_ENABLE_CAD);
 
-       openlog(bb_applet_name, 0, pri);
+       openlog(applet_name, 0, pri);
 
        message = "\nThe system is going down NOW !!";
        syslog(pri, "%s", message);
index d2794e7d646e985e2821143457a374515ec51222..bd9c9f7a28d83451bdd059140ef282e7fb9b12a8 100644 (file)
@@ -127,7 +127,7 @@ int copy_file(const char *source, const char *dest, int flags)
 
                if (dest_exists) {
                        if (flags & FILEUTILS_INTERACTIVE) {
-                               fprintf(stderr, "%s: overwrite `%s'? ", bb_applet_name, dest);
+                               fprintf(stderr, "%s: overwrite `%s'? ", applet_name, dest);
                                if (!bb_ask_confirmation()) {
                                        close (src_fd);
                                        return 0;
index 92534a1c5b50e9c9471d87ea347639c4e92f5608..509aa6a6dd32e1c7cb30fae9934e7b6e57d7336e 100644 (file)
@@ -53,7 +53,7 @@ int remove_file(const char *path, int flags)
                if ((!(flags & FILEUTILS_FORCE) && access(path, W_OK) < 0 &&
                                        isatty(0)) ||
                                (flags & FILEUTILS_INTERACTIVE)) {
-                       fprintf(stderr, "%s: descend into directory `%s'? ", bb_applet_name,
+                       fprintf(stderr, "%s: descend into directory `%s'? ", applet_name,
                                        path);
                        if (!bb_ask_confirmation())
                                return 0;
@@ -80,7 +80,7 @@ int remove_file(const char *path, int flags)
                }
 
                if (flags & FILEUTILS_INTERACTIVE) {
-                       fprintf(stderr, "%s: remove directory `%s'? ", bb_applet_name, path);
+                       fprintf(stderr, "%s: remove directory `%s'? ", applet_name, path);
                        if (!bb_ask_confirmation())
                                return status;
                }
@@ -96,7 +96,7 @@ int remove_file(const char *path, int flags)
                                        !S_ISLNK(path_stat.st_mode) &&
                                        isatty(0)) ||
                                (flags & FILEUTILS_INTERACTIVE)) {
-                       fprintf(stderr, "%s: remove `%s'? ", bb_applet_name, path);
+                       fprintf(stderr, "%s: remove `%s'? ", applet_name, path);
                        if (!bb_ask_confirmation())
                                return 0;
                }
index e670d40ba738170149c788593f9036f3c0e87793..0f018c5171382ae0831d4b29324111f98579fc85 100644 (file)
@@ -22,7 +22,7 @@ void bb_verror_msg(const char *s, va_list p, const char* strerr)
 
        if (logmode & LOGMODE_STDIO) {
                fflush(stdout);
-               fprintf(stderr, "%s: ", bb_applet_name);
+               fprintf(stderr, "%s: ", applet_name);
                vfprintf(stderr, s, p);
                if (!strerr)
                        fputs(msg_eol, stderr);
index 0cd4671c88021504eb449627935cd0faf4d79211..f4320687e74ba2fcbd04f48fdf58ea907efbcafe 100644 (file)
@@ -81,7 +81,7 @@ int deluser_main(int argc, char **argv)
        if (argc != 2) {
                bb_show_usage();
        } else {
-               if (ENABLE_DELUSER && bb_applet_name[3] == 'u') {
+               if (ENABLE_DELUSER && applet_name[3] == 'u') {
                        del_line_matching(argv[1], bb_path_passwd_file);
                        if (ENABLE_FEATURE_SHADOWPASSWDS)
                                del_line_matching(argv[1], bb_path_shadow_file);
index 6730fa85c9ad37700daeecc3dd81e13893af031d..4b43684a2e3e8af81a6ef1ef3bcfaa5cd48758b2 100644 (file)
@@ -821,7 +821,7 @@ int getty_main(int argc, char **argv)
        dup2(nullfd, 2);
        if(nullfd > 2)
                close(nullfd);
-       openlog(bb_applet_name, LOG_PID, LOG_AUTH);
+       openlog(applet_name, LOG_PID, LOG_AUTH);
        logmode = LOGMODE_BOTH;
 
 #ifdef DEBUGGING
index 1f392c10f7926141dc8f080f22845d20510f3ac8..8003922f90ad0af5c8f6ec28e8b4cf6f174edf6f 100644 (file)
@@ -268,7 +268,7 @@ int login_main(int argc, char **argv)
 
        bb_setpgrp;
 
-       openlog(bb_applet_name, LOG_PID | LOG_CONS | LOG_NOWAIT, LOG_AUTH);
+       openlog(applet_name, LOG_PID | LOG_CONS | LOG_NOWAIT, LOG_AUTH);
 
        while (1) {
                if (!username[0])
index 78942014efcf64587897c24c46fbd2128e06fe2a..a23ee932b9a9bb83fb1e1f3c83610950ae0ddf3d 100644 (file)
@@ -41,7 +41,7 @@ int su_main(int argc, char **argv)
                in this case resort to getpwuid.  */
                old_user = xstrdup(USE_FEATURE_UTMP(getlogin() ? : ) (pw = getpwuid(cur_uid)) ? pw->pw_name : "");
                tty = ttyname(2) ? : "none";
-               openlog(bb_applet_name, 0, LOG_AUTH);
+               openlog(applet_name, 0, LOG_AUTH);
        }
 
        pw = getpwnam(opt_username);
index 6edd2582b3f250acffda5fa92e9d7c91f2967fe1..40eb5e9cfc1a40a6e11a9cc923b477f77c2e456b 100644 (file)
@@ -44,7 +44,7 @@ int sulogin_main(int argc, char **argv)
        struct spwd *spwd;
 
        logmode = LOGMODE_BOTH;
-       openlog(bb_applet_name, 0, LOG_AUTH);
+       openlog(applet_name, 0, LOG_AUTH);
 
        if (getopt32 (argc, argv, "t:", &timeout_arg)) {
                if (safe_strtoi(timeout_arg, &timeout)) {
index 4f25486dd35a590d73de4bc1ef22500bde1b6ff9..db0cc2c6bcdc8a393adaa360b166d9047d5afbaa 100644 (file)
@@ -205,7 +205,7 @@ int crond_main(int ac, char **av)
         */
 
        crondlog("\011%s " VERSION " dillon, started, log level %d\n",
-                        bb_applet_name, LogLevel);
+                        applet_name, LogLevel);
 
        SynchronizeDir();
 
@@ -305,7 +305,7 @@ static int ChangeUser(const char *user)
 static void startlogger(void)
 {
        if (LogFile == 0) {
-               openlog(bb_applet_name, LOG_CONS | LOG_PID, LOG_CRON);
+               openlog(applet_name, LOG_CONS | LOG_PID, LOG_CRON);
        }
 #if ENABLE_DEBUG_CROND_OPTION
        else {                          /* test logfile */
index 0f36970f972eb9e0ebe450d436e98fa1d26eafff..f1fee2c90e7e20eae81399b4393c306df5840802 100644 (file)
@@ -306,7 +306,7 @@ static void msg_logger(int pri, const char * fmt, ... )
        va_start(ap, fmt);
        ret = access ("/dev/log", F_OK);
        if (ret == 0) {
-               openlog(bb_applet_name, 0, LOG_DAEMON);
+               openlog(applet_name, 0, LOG_DAEMON);
                vsyslog( pri , fmt, ap);
                /* Man: A trailing newline is added when needed. */
                closelog();
@@ -492,7 +492,7 @@ int devfsd_main (int argc, char **argv)
        if ( print_version  || (DEVFSD_PROTOCOL_REVISION_DAEMON != proto_rev) )
        {
                bb_printf( "%s v%s\nDaemon %s:\t%d\nKernel-side %s:\t%d\n",
-                                        bb_applet_name,DEVFSD_VERSION,bb_msg_proto_rev,
+                                        applet_name,DEVFSD_VERSION,bb_msg_proto_rev,
                                         DEVFSD_PROTOCOL_REVISION_DAEMON,bb_msg_proto_rev, proto_rev);
                if (DEVFSD_PROTOCOL_REVISION_DAEMON != proto_rev)
                        bb_error_msg_and_die( "%s mismatch!",bb_msg_proto_rev);
@@ -509,7 +509,7 @@ int devfsd_main (int argc, char **argv)
        if (sigaction (SIGHUP, &new_action, NULL) != 0 || sigaction (SIGUSR1, &new_action, NULL) != 0 )
                devfsd_error_msg_and_die( "sigaction");
 
-       bb_printf("%s v%s  started for %s\n",bb_applet_name, DEVFSD_VERSION, mount_point);
+       bb_printf("%s v%s  started for %s\n",applet_name, DEVFSD_VERSION, mount_point);
 
        /*  Set umask so that mknod(2), open(2) and mkdir(2) have complete control over permissions  */
        umask (0);
index 6070e5f2d0c83d621b8595da298572d9434650f3..c8d32765a4b9cd92ff9598e9a73309c3a706c1a4 100644 (file)
@@ -219,7 +219,7 @@ static int checkInput(char *buf, int len, int l)
 int fakeidentd_main(int argc, char **argv)
 {
        /* This applet is an inetd-style daemon */
-       openlog(bb_applet_name, 0, LOG_DAEMON);
+       openlog(applet_name, 0, LOG_DAEMON);
        logmode = LOGMODE_SYSLOG;
 
        memset(conns, 0, sizeof(conns));
index 25b7f142754197ca371184a46b7adcdc929e2e96..4928541530bfa3ca981feedb8f03fcc7c2f98e0a 100644 (file)
@@ -288,10 +288,10 @@ int ftpgetput_main(int argc, char **argv)
        int (*ftp_action)(ftp_host_info_t *, FILE *, const char *, char *) = NULL;
 
        /* Check to see if the command is ftpget or ftput */
-       if (ENABLE_FTPPUT && (!ENABLE_FTPGET || bb_applet_name[3] == 'p')) {
+       if (ENABLE_FTPPUT && (!ENABLE_FTPGET || applet_name[3] == 'p')) {
                ftp_action = ftp_send;
        }
-       if (ENABLE_FTPGET && (!ENABLE_FTPPUT || bb_applet_name[3] == 'g')) {
+       if (ENABLE_FTPGET && (!ENABLE_FTPPUT || applet_name[3] == 'g')) {
                ftp_action = ftp_receive;
        }
 
index f34287580c14596fd30522221711699ef7e4e540..6334cbc43fc73a094088931ac5dc50fe5ab3aa5a 100644 (file)
@@ -1080,7 +1080,7 @@ int ifupdown_main(int argc, char **argv)
        int any_failures = 0;
        int i;
 
-       if (bb_applet_name[2] == 'u') {
+       if (applet_name[2] == 'u') {
                /* ifup command */
                cmds = iface_up;
        } else {
index 350f91dc48d07af9bc5ad8a90bfd9625d3d31dfa..e22115a5cb3c6b24c9ed9f69bfd7f2b401eefafd 100644 (file)
@@ -1251,7 +1251,7 @@ inetd_main(int argc, char *argv[])
        LastArg = envp[-1] + strlen(envp[-1]);
 #endif
 
-       openlog(bb_applet_name, LOG_PID | LOG_NOWAIT, LOG_DAEMON);
+       openlog(applet_name, LOG_PID | LOG_NOWAIT, LOG_DAEMON);
 
        opt = getopt32(argc, argv, "R:f", &stoomany);
        if(opt & 1) {
index 146eccea9ebaea0800f95c4cdf33b0b639950ed5..f60a97e8b61cf12b9eabbfd3b18f3ba64f771e5f 100644 (file)
@@ -66,7 +66,7 @@ int nameif_main(int argc, char **argv)
        mactable_t *ch;
 
        if (1 & getopt32(argc, argv, "sc:", &fname)) {
-               openlog(bb_applet_name, 0, LOG_LOCAL0);
+               openlog(applet_name, 0, LOG_LOCAL0);
                logmode = LOGMODE_SYSLOG;
        }
 
index 808d4be51271acef32a25bf80e33ad9f49ff8e41..1c4dede39acad02349b1ced1aa9df55d0b4dd46f 100644 (file)
@@ -384,7 +384,7 @@ telnetd_main(int argc, char **argv)
         * look into syslog for all errors, even early ones.
         * Direct all output to syslog at once.
         */
-       openlog(bb_applet_name, 0, LOG_USER);
+       openlog(applet_name, 0, LOG_USER);
        logmode = LOGMODE_SYSLOG;
 
        opt = getopt32(argc, argv, "f:l:" USE_FEATURE_TELNETD_INETD("p:b:"),
index 042cbe35a1ccb6b09c9406280429e9bacf3a00b9..4af52362567a2ef24277fa4fb5edd04c470279b3 100644 (file)
@@ -697,7 +697,7 @@ send_probe(int seq, int ttl, struct timeval *tp)
                if (cc < 0)
                        bb_perror_msg_and_die("sendto");
                printf("%s: wrote %s %d chars, ret=%d\n",
-                   bb_applet_name, hostname, packlen, cc);
+                   applet_name, hostname, packlen, cc);
                (void)fflush(stdout);
        }
 }
index c34b3de26f7ba122725c493c0819f56b7dc028d8..ca0c79b954f6591d08ca6a2ac164ffb8f8dfae7e 100644 (file)
@@ -82,9 +82,9 @@ void udhcp_start_log_and_pid(const char *pidfile)
        setlinebuf(stdout);
 
        if (ENABLE_FEATURE_UDHCP_SYSLOG) {
-               openlog(bb_applet_name, LOG_PID, LOG_LOCAL0);
+               openlog(applet_name, LOG_PID, LOG_LOCAL0);
                logmode |= LOGMODE_SYSLOG;
        }
 
-       bb_info_msg("%s (v%s) started", bb_applet_name, BB_VER);
+       bb_info_msg("%s (v%s) started", applet_name, BB_VER);
 }
index d9c1adf194752da4e114621a4a606ec9796ef32c..6bd7f255b9319e2146a9834c8d524c38e7790803 100644 (file)
@@ -222,7 +222,7 @@ int zcip_main(int argc, char *argv[])
        if (!FOREGROUND) {
                /* Do it early, before all bb_xx_msg calls */
                logmode = LOGMODE_SYSLOG;
-               openlog(bb_applet_name, 0, LOG_DAEMON);
+               openlog(applet_name, 0, LOG_DAEMON);
        }
        if (opts & 4) { // -r n.n.n.n
                if (inet_aton(r_opt, &ip) == 0
index fe9b24200da0d3e74cf38e7012440537c316a24c..2408a70ca16417aed3d9d3221fe719a9682024c4 100644 (file)
@@ -15,10 +15,10 @@ int kill_main(int argc, char **argv)
        char *arg;
        pid_t pid;
        int signo = SIGTERM, errors = 0, quiet = 0;
-       const int killall = (ENABLE_KILLALL && bb_applet_name[4]=='a'
-                      && (!ENABLE_KILLALL5 || bb_applet_name[7]!='5'));
-       const int killall5 = (ENABLE_KILLALL5 && bb_applet_name[4]=='a'
-                         && (!ENABLE_KILLALL || bb_applet_name[7]=='5'));
+       const int killall = (ENABLE_KILLALL && applet_name[4]=='a'
+                      && (!ENABLE_KILLALL5 || applet_name[7]!='5'));
+       const int killall5 = (ENABLE_KILLALL5 && applet_name[4]=='a'
+                         && (!ENABLE_KILLALL || applet_name[7]=='5'));
 
        /* Parse any options */
        argc--;
index ced28387dc918d614a3450c2e9b88ef928ff085f..1ee9b8d0f5b60fb0b6c606466ad19bf792762897 100644 (file)
@@ -230,10 +230,10 @@ static void softlimit(int, char **);
 
 int chpst_main(int argc, char **argv)
 {
-       if (bb_applet_name[3] == 'd') envdir(argc, argv);
-       if (bb_applet_name[1] == 'o') softlimit(argc, argv);
-       if (bb_applet_name[0] == 's') setuidgid(argc, argv);
-       if (bb_applet_name[0] == 'e') envuidgid(argc, argv);
+       if (applet_name[3] == 'd') envdir(argc, argv);
+       if (applet_name[1] == 'o') softlimit(argc, argv);
+       if (applet_name[0] == 's') setuidgid(argc, argv);
+       if (applet_name[0] == 'e') envuidgid(argc, argv);
         // otherwise we are.......... chpst
 
        {
index 7d4da434e085a8ad2d04f371aeb36d7ae31abc09..0d9fa7fe2e18e1cf23805563730f65e5dec420fc 100644 (file)
@@ -3753,7 +3753,7 @@ tryexec(char *cmd, char **argv, char **envp)
                while (*c != NULL) {
                        c++; argc++;
                }
-               bb_applet_name = cmd;
+               applet_name = cmd;
                exit(a->main(argc, argv));
        }
 #ifdef CONFIG_FEATURE_SH_STANDALONE_SHELL
@@ -13658,7 +13658,7 @@ static arith_t arith (const char *expr, int *perrcode)
 
 
 #ifdef DEBUG
-const char *bb_applet_name = "debug stuff usage";
+const char *applet_name = "debug stuff usage";
 int main(int argc, char **argv)
 {
        return ash_main(argc, argv);
index 9a57f750e18645a50164b9e94b2b406df707a1ab..a9fc84798622019ded8b42920e1d07e7da41d624 100644 (file)
@@ -1892,7 +1892,7 @@ rewrite_line:
 
 #ifdef TEST
 
-const char *bb_applet_name = "debug stuff usage";
+const char *applet_name = "debug stuff usage";
 
 #ifdef CONFIG_FEATURE_NONPRINTABLE_INVERSE_PUT
 #include <locale.h>
index 9c862a17f958d8a9f6216ea4f2d943ba1e60b0c4..c499612cc32017ca604822922329ba61145f9e64 100644 (file)
@@ -1145,7 +1145,7 @@ static int pseudo_exec(struct child_prog *child)
        /* Check if the command matches any of the forking builtins. */
        for (x = bltins_forking; x->cmd; x++) {
                if (strcmp(child->argv[0], x->cmd) == 0) {
-                       bb_applet_name=x->cmd;
+                       applet_name=x->cmd;
                        _exit (x->function(child));
                }
        }
index 5d110bc4b949c55a3a28fb4574fa261681d5869a..2293d3ee63ec422e2e655d9728a2757aa9401db4 100644 (file)
@@ -24,7 +24,7 @@ int freeramdisk_main(int argc, char **argv)
        fd = xopen(argv[1], O_RDWR);
 
        // Act like freeramdisk, fdflush, or both depending on configuration.
-       result = ioctl(fd, (ENABLE_FREERAMDISK && bb_applet_name[1]=='r')
+       result = ioctl(fd, (ENABLE_FREERAMDISK && applet_name[1]=='r')
                        || !ENABLE_FDFLUSH ? BLKFLSBUF : FDFLUSH);
 
        if (ENABLE_FEATURE_CLEAN_UP) close(fd);
index c0dda2f1fef1492f4277a56e5f7e89e498de9b10..a2ca7a5668ebacd62e6647a1ef21664bb3b7cdcf 100644 (file)
@@ -1343,7 +1343,7 @@ int fsck_minix_main(int argc, char **argv)
         * flags and whether or not the -f switch was specified on the
         * command line.
         */
-       printf("%s, %s\n", bb_applet_name, program_version);
+       printf("%s, %s\n", applet_name, program_version);
        if (!(Super.s_state & MINIX_ERROR_FS) &&
                (Super.s_state & MINIX_VALID_FS) && !force) {
                if (repair)
index 899bf855776dd02268970b65476c22ffe4cc3382..141517ba01d4f67ec3979c7ae9617a825e5abec6 100644 (file)
@@ -707,7 +707,7 @@ static int daemonize(void)
        dup2(fd, 2);
        if (fd > 2) close(fd);
        setsid();
-       openlog(bb_applet_name, LOG_PID, LOG_DAEMON);
+       openlog(applet_name, LOG_PID, LOG_DAEMON);
        logmode = LOGMODE_SYSLOG;
        return 1;
 }
index 4fcb239b6fd252b93c8cc47ac945c8391c10fedc..8434d121c374cf44c98c4cdeee375cdfb3bc03c2 100644 (file)
@@ -24,7 +24,7 @@ static int swap_enable_disable(char *device)
                if (st.st_blocks * 512 < st.st_size)
                        bb_error_msg_and_die("swap file has holes");
 
-       if (bb_applet_name[5] == 'n')
+       if (applet_name[5] == 'n')
                status = swapon(device, 0);
        else
                status = swapoff(device);