rename bb_default_error_retval -> xfunc_error_retval

This commit is contained in:
Denis Vlasenko
2006-10-03 20:28:06 +00:00
parent b6332248ca
commit 40920825d5
17 changed files with 19 additions and 19 deletions
+2 -2
View 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);
}