* findutils/grep.c (grep_main): Remove unnecessary use of junk.
authorMatt Kraai <kraai@debian.org>
Fri, 22 Feb 2002 22:08:16 +0000 (22:08 -0000)
committerMatt Kraai <kraai@debian.org>
Fri, 22 Feb 2002 22:08:16 +0000 (22:08 -0000)
findutils/grep.c

index 11913f2645c406dcbad70fb99bad9ddc0aa37009..6fe183325fbf5b88be548ed913a799e62013f285 100644 (file)
@@ -234,7 +234,7 @@ static void destroy_regexes(void)
 extern int grep_main(int argc, char **argv)
 {
        int opt;
-#if defined (CONFIG_FEATURE_GREP_CONTEXT) || defined (CONFIG_FEATURE_GREP_EGREP_ALIAS)
+#if defined (CONFIG_FEATURE_GREP_CONTEXT)
        char *junk;
 #endif
 
@@ -244,8 +244,7 @@ extern int grep_main(int argc, char **argv)
 #endif
 
 #ifdef CONFIG_FEATURE_GREP_EGREP_ALIAS
-       junk = get_last_path_component(argv[0]);
-       if (junk && strcmp(junk, "egrep") == 0)
+       if (strcmp(get_last_path_component(argv[0]), "egrep") == 0)
                reflags |= REG_EXTENDED;
 #endif