rename bb_default_error_retval -> xfunc_error_retval
authorDenis Vlasenko <vda.linux@googlemail.com>
Tue, 3 Oct 2006 20:28:06 +0000 (20:28 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Tue, 3 Oct 2006 20:28:06 +0000 (20:28 -0000)
17 files changed:
applets/applets.c
coreutils/cmp.c
coreutils/env.c
coreutils/nice.c
coreutils/nohup.c
coreutils/sort.c
coreutils/tty.c
editors/sed.c
include/libbb.h
libbb/default_error_retval.c
libbb/error_msg_and_die.c
libbb/fflush_stdout_and_exit.c
libbb/herror_msg_and_die.c
libbb/perror_msg_and_die.c
libbb/xfuncs.c
miscutils/crontab.c
networking/arping.c

index e992998..d5b2672 100644 (file)
@@ -443,7 +443,7 @@ void bb_show_usage(void)
                        applet_using->name, usage_string);
        }
 
-       exit (bb_default_error_retval);
+       exit(xfunc_error_retval);
 }
 
 static int applet_name_compare(const void *name, const void *vapplet)
index d26c3db..d0d9769 100644 (file)
@@ -31,7 +31,7 @@ static FILE *cmp_xfopen_input(const char * const filename)
                return fp;
        }
 
-       exit(bb_default_error_retval);  /* We already output an error message. */
+       exit(xfunc_error_retval);       /* We already output an error message. */
 }
 
 static const char fmt_eof[] = "cmp: EOF on %s\n";
@@ -52,7 +52,7 @@ int cmp_main(int argc, char **argv)
        unsigned opt;
        int retval = 0;
 
-       bb_default_error_retval = 2;    /* 1 is returned if files are different. */
+       xfunc_error_retval = 2; /* 1 is returned if files are different. */
 
        opt = bb_getopt_ulflags(argc, argv, opt_chars);
 
index b42d904..2af15a3 100644 (file)
@@ -26,7 +26,7 @@
  * - correct "-" option usage
  * - multiple "-u unsetenv" support
  * - GNU long option support
- * - use bb_default_error_retval
+ * - use xfunc_error_retval
  */
 
 #include "busybox.h"
@@ -82,7 +82,7 @@ int env_main(int argc, char** argv)
        if (*argv) {
                execvp(*argv, argv);
                /* SUSv3-mandated exit codes. */
-               bb_default_error_retval = (errno == ENOENT) ? 127 : 126;
+               xfunc_error_retval = (errno == ENOENT) ? 127 : 126;
                bb_perror_msg_and_die("%s", *argv);
        }
 
index ad0178b..4c54ddd 100644 (file)
@@ -67,6 +67,6 @@ int nice_main(int argc, char **argv)
        execvp(*argv, argv);            /* Now exec the desired program. */
 
        /* The exec failed... */
-       bb_default_error_retval = (errno == ENOENT) ? 127 : 126; /* SUSv3 */
+       xfunc_error_retval = (errno == ENOENT) ? 127 : 126; /* SUSv3 */
        bb_perror_msg_and_die("%s", *argv);
 }
index cf8ad2c..439fbb1 100644 (file)
@@ -17,7 +17,7 @@ int nohup_main(int argc, char **argv)
        int temp, nullfd;
        char *nohupout, *home = NULL;
 
-       bb_default_error_retval = 127;
+       xfunc_error_retval = 127;
 
        if (argc<2) bb_show_usage();
 
index 7dfe176..c450cfb 100644 (file)
@@ -225,7 +225,7 @@ int sort_main(int argc, char **argv)
        char *line,**lines=NULL,*optlist="ngMucszbrdfimS:T:o:k:t:";
        int c;
 
-       bb_default_error_retval = 2;
+       xfunc_error_retval = 2;
        /* Parse command line options */
        while((c=getopt(argc,argv,optlist))>0) {
                line=strchr(optlist,c);
index 924aff2..eb8c3dd 100644 (file)
@@ -21,7 +21,7 @@ int tty_main(int argc, char **argv)
        int silent;             /* Note: No longer relevant in SUSv3. */
        int retval;
 
-       bb_default_error_retval = 2;    /* SUSv3 requires > 1 for error. */
+       xfunc_error_retval = 2; /* SUSv3 requires > 1 for error. */
 
        silent = bb_getopt_ulflags(argc, argv, "s");
 
index 94dc820..2016652 100644 (file)
@@ -725,7 +725,7 @@ static int puts_maybe_newline(char *s, FILE *file, int missing_newline, int no_n
        if(!no_newline) fputc('\n',file);
 
     if(ferror(file)) {
-               bb_default_error_retval = 4;  /* It's what gnu sed exits with... */
+               xfunc_error_retval = 4;  /* It's what gnu sed exits with... */
                bb_error_msg_and_die(bb_msg_write_error);
        }
 
index 73a2563..c0de921 100644 (file)
@@ -421,7 +421,7 @@ extern const char bb_default_login_shell[];
 
 extern const char bb_path_mtab_file[];
 
-extern int bb_default_error_retval;
+extern int xfunc_error_retval;
 
 #ifdef CONFIG_FEATURE_DEVFS
 # define CURRENT_VC "/dev/vc/0"
index ff48a67..f4e46a4 100644 (file)
@@ -16,4 +16,4 @@
 #include <stdlib.h>
 #include "libbb.h"
 
-int bb_default_error_retval = EXIT_FAILURE;
+int xfunc_error_retval = EXIT_FAILURE;
index 29a260b..10d9535 100644 (file)
@@ -24,5 +24,5 @@ void bb_error_msg_and_die(const char *s, ...)
        va_end(p);
        if (die_sleep)
                sleep(die_sleep);
-       exit(bb_default_error_retval);
+       exit(xfunc_error_retval);
 }
index 245f508..6df8dde 100644 (file)
@@ -18,7 +18,7 @@
 void bb_fflush_stdout_and_exit(int retval)
 {
        if (fflush(stdout)) {
-               retval = bb_default_error_retval;
+               retval = xfunc_error_retval;
        }
        if (die_sleep)
                sleep(die_sleep);
index f115c8e..f62ddd2 100644 (file)
@@ -21,5 +21,5 @@ void bb_herror_msg_and_die(const char *s, ...)
        va_end(p);
        if (die_sleep)
                sleep(die_sleep);
-       exit(bb_default_error_retval);
+       exit(xfunc_error_retval);
 }
index c1cfb95..2303ba2 100644 (file)
@@ -22,5 +22,5 @@ void bb_perror_msg_and_die(const char *s, ...)
        va_end(p);
        if (die_sleep)
                sleep(die_sleep);
-       exit(bb_default_error_retval);
+       exit(xfunc_error_retval);
 }
index 4aa1c30..f1d4486 100644 (file)
@@ -414,7 +414,7 @@ void xprint_and_close_file(FILE *file)
 {
        // copyfd outputs error messages for us.
        if (bb_copyfd_eof(fileno(file), 1) == -1)
-               exit(bb_default_error_retval);
+               exit(xfunc_error_retval);
 
        fclose(file);
 }
index 3706f9f..a3bfd49 100644 (file)
@@ -269,7 +269,7 @@ static int GetReplaceStream(const char *user, const char *file)
        if (ChangeUser(user, 0) < 0)
                exit(0);
 
-       bb_default_error_retval = 0;
+       xfunc_error_retval = 0;
        fd = xopen(file, O_RDONLY);
        buf[0] = 0;
        write(filedes[1], buf, 1);
index c63ec91..f84c8a7 100644 (file)
@@ -295,7 +295,7 @@ int arping_main(int argc, char **argv)
 
        target = *argv;
 
-       bb_default_error_retval = 2;
+       xfunc_error_retval = 2;
 
        {
                struct ifreq ifr;