bb_applet_name -> applet_name
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user