env: micro-optimization
authorDenis Vlasenko <vda.linux@googlemail.com>
Mon, 6 Aug 2007 02:55:41 +0000 (02:55 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Mon, 6 Aug 2007 02:55:41 +0000 (02:55 -0000)
printenv: fix "printenv VAR1 VAR2" bug (wasn't printing VAR2)
(spotted by kalyanatejaswi balabhadrapatruni <kalyanatejaswi@yahoo.co.in>)

env_main                                             267     260      -7
printenv_main                                        147      75     -72
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 0/2 up/down: 0/-79)             Total: -79 bytes
   text    data     bss     dec     hex filename
 770336    1096   11228  782660   bf144 busybox_old
 770256    1096   11228  782580   bf0f4 busybox_unstripped

coreutils/env.c
coreutils/printenv.c

index 31167d02920db17b6b78dbc710aa21c1da2e1bb6..3008358ec58a3bf7744913ddc1b3ec5102c25e42 100644 (file)
@@ -63,7 +63,7 @@ int env_main(int argc, char** argv)
        if (opt & 1) {
                cleanenv[0] = NULL;
                environ = cleanenv;
-       } else if (opt & 2) {
+       } else {
                while (unset_env) {
                        unsetenv(unset_env->data);
                        unset_env = unset_env->link;
index 2531d5a235081096faec61e0c447ea84b041f3aa..19fa832c87b4f4461f3114deb3a112da0b6bef6d 100644 (file)
@@ -14,25 +14,20 @@ extern char **environ;
 int printenv_main(int argc, char **argv);
 int printenv_main(int argc, char **argv)
 {
-       int e = 0;
-
        /* no variables specified, show whole env */
-       if (argc == 1)
+       if (argc == 1) {
+               int e = 0;
                while (environ[e])
                        puts(environ[e++]);
-
-       /* search for specified variables and print them out if found */
-       else {
-               int i;
-               size_t l;
+       } else {
+               /* search for specified variables and print them out if found */
                char *arg, *env;
 
-               for (i=1; (arg = argv[i]); ++i)
-                       for (; (env = environ[e]); ++e) {
-                               l = strlen(arg);
-                               if (!strncmp(env, arg, l) && env[l] == '=')
-                                       puts(env + l + 1);
-                       }
+               while ((arg = *++argv) != NULL) {
+                       env = getenv(arg);
+                       if (env)
+                               puts(env);
+               }
        }
 
        fflush_stdout_and_exit(0);