diff options
author | Rich Felker <dalias@aerifal.cx> | 2006-10-23 22:27:09 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2006-10-23 22:27:09 +0000 |
commit | 9b7a5f39380ca50f0efbb30689cd3ca97bac3920 (patch) | |
tree | 9bc439a07f41fdda79f9c4b4be6b9834c92bad62 /tty.c | |
parent | d137d9f75e81ce2e5f27247b831cbf4f7c21efdd (diff) |
returning in the child process is a very bad idea!
Diffstat (limited to 'tty.c')
-rw-r--r-- | tty.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ int uutty_open(char **cmd, int w, int h) if (!s) s = "/bin/sh"; execl(s, s, (char *)0); } - return 1; + _Exit(1); } uutty_resize(ptm, w, h); |