aboutsummaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
authorAurélien Aptel <aurelien.aptel@gmail.com>2010-04-27 00:04:29 +0200
committerAurélien Aptel <aurelien.aptel@gmail.com>2010-04-27 00:04:29 +0200
commit50d795d28c3f300e11b31503c8d20aeae20258fe (patch)
tree8ebe870228fa4a14716b3e0b7887aa01bace7f95 /st.c
parentba9e8eafe7f32a6f6b8e1c6b7f80c38d5a7df3d3 (diff)
downloadst-50d795d28c3f300e11b31503c8d20aeae20258fe.tar.gz
st-50d795d28c3f300e11b31503c8d20aeae20258fe.tar.bz2
little clean up.
Diffstat (limited to 'st.c')
-rwxr-xr-xst.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/st.c b/st.c
index ee79a33..ff43706 100755
--- a/st.c
+++ b/st.c
@@ -208,12 +208,10 @@ die(const char *errstr, ...) {
void
execsh(void) {
- char *shell = getenv("SHELL");
- if(!shell)
- shell = "/bin/sh";
- char *args[3] = {shell, "-i", NULL};
+ char *args[3] = {getenv("SHELL"), "-i", NULL};
+ DEFAULT(args[0], "/bin/sh"); /* default shell if getenv() failed */
putenv("TERM=" TNAME);
- execvp(shell, args);
+ execvp(args[0], args);
}
void