瀏覽代碼

Well, I was confused. Damn state exams. Instead of discussing this shit I

should really learn opthalmology instead. :O
Christoph Lohmann 12 年之前
父節點
當前提交
2e38ab7afd
共有 1 個文件被更改,包括 1 次插入4 次删除
  1. 1 4
      st.c

+ 1 - 4
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);
 }