From 8f8f268cfdecb4cabeb2e649a73afc7a485aeff5 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Tue, 3 Oct 2006 21:00:43 +0000 Subject: bb_applet_name -> applet_name --- findutils/grep.c | 4 ++-- findutils/xargs.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'findutils') diff --git a/findutils/grep.c b/findutils/grep.c index 35e6aff2d..ce975e771 100644 --- a/findutils/grep.c +++ b/findutils/grep.c @@ -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) diff --git a/findutils/xargs.c b/findutils/xargs.c index 278382373..81997b6f6 100644 --- a/findutils/xargs.c +++ b/findutils/xargs.c @@ -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); } -- cgit v1.2.3