aboutsummaryrefslogtreecommitdiffhomepage
path: root/st.c
diff options
context:
space:
mode:
authorGravatar Christoph Lohmann <20h@r-36.net>2012-10-09 19:40:37 +0200
committerGravatar Christoph Lohmann <20h@r-36.net>2012-10-09 19:40:37 +0200
commit2e38ab7afdc56e3853751918f1b7705362bea01c (patch)
tree14b3d5defce72a81e176029c2e5b8c1becd2131e /st.c
parenteb6713acf1928ec94364627ed583252370051705 (diff)
Well, I was confused. Damn state exams. Instead of discussing this shit I
should really learn opthalmology instead. :O
Diffstat (limited to 'st.c')
-rw-r--r--st.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/st.c b/st.c
index 43f5bc2..f967d2c 100644
--- a/st.c
+++ b/st.c
@@ -865,9 +865,6 @@ execsh(void) {
char **args;
char *envshell = getenv("SHELL");
- if (envshell == NULL)
- envshell ="/bin/sh";
-
unsetenv("COLUMNS");
unsetenv("LINES");
unsetenv("TERMCAP");
@@ -881,7 +878,7 @@ execsh(void) {
DEFAULT(envshell, SHELL);
putenv("TERM="TNAME);
- args = opt_cmd ? opt_cmd : (char*[]){envshell, "-i", NULL};
+ args = opt_cmd ? opt_cmd : (char *[]){envshell, "-i", NULL};
execvp(args[0], args);
exit(EXIT_FAILURE);
}