Browse Source

If there is really someone without SHELL set, help him/her.

master
Christoph Lohmann 12 years ago
parent
commit
eb6713acf1
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      st.c

+ 3
- 0
st.c View File

@ -865,6 +865,9 @@ execsh(void) {
char **args; char **args;
char *envshell = getenv("SHELL"); char *envshell = getenv("SHELL");
if (envshell == NULL)
envshell ="/bin/sh";
unsetenv("COLUMNS"); unsetenv("COLUMNS");
unsetenv("LINES"); unsetenv("LINES");
unsetenv("TERMCAP"); unsetenv("TERMCAP");


Loading…
Cancel
Save