tar: support -T - and -X -
[oweals/busybox.git] / libbb / setup_environment.c
index 13e60d8e422d05bc2095c493a8f39498107c8f90..a95fbc5bfc4da7dd967fea91720f2c50ecf1619d 100644 (file)
@@ -43,7 +43,7 @@ void FAST_FUNC setup_environment(const char *shell, int flags, const struct pass
                const char *term;
 
                /* Leave TERM unchanged. Set HOME, SHELL, USER, LOGNAME, PATH.
-                  Unset all other environment variables.  */
+                * Unset all other environment variables.  */
                term = getenv("TERM");
                clearenv();
                if (term)
@@ -57,7 +57,7 @@ void FAST_FUNC setup_environment(const char *shell, int flags, const struct pass
                //xsetenv("SHELL",   shell);
        } else if (flags & SETUP_ENV_CHANGEENV) {
                /* Set HOME, SHELL, and if not becoming a super-user,
-                  USER and LOGNAME.  */
+                * USER and LOGNAME.  */
                if (pw->pw_uid) {
  shortcut:
                        xsetenv("USER",    pw->pw_name);