aboutsummarylogtreecommitdiffstats
path: root/st.c
diff options
context:
space:
mode:
authorAurélien Aptel2010-08-26 21:36:21 +0200
committerAurélien Aptel2010-08-26 21:36:21 +0200
commitcf5b50f54c11258cd36a1584d0ca764af9733dfd (patch)
tree88be2d0840ec2e9cfa8db41217c6e7aa9dbf52d2 /st.c
parentc78f724fc02b7cac423659432fa3bc0283051d7f (diff)
downloadaur-cf5b50f54c11258cd36a1584d0ca764af9733dfd.tar.gz
close master/slave pty in the shell process.
Diffstat (limited to 'st.c')
-rw-r--r--st.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/st.c b/st.c
index bef3039a8ad1..e288902032a7 100644
--- a/st.c
+++ b/st.c
@@ -247,7 +247,7 @@ ttynew(void) {
if((m = posix_openpt(O_RDWR | O_NOCTTY)) < 0)
die("openpt failed: %s\n", SERRNO);
if(grantpt(m) < 0)
- die("grandpt failed: %s\n", SERRNO);
+ die("grantpt failed: %s\n", SERRNO);
if(unlockpt(m) < 0)
die("unlockpt failed: %s\n", SERRNO);
if(!(pts = ptsname(m)))
@@ -265,7 +265,9 @@ ttynew(void) {
dup2(s, STDOUT_FILENO);
dup2(s, STDERR_FILENO);
if(ioctl(s, TIOCSCTTY, NULL) < 0)
- die("ioctl TTIOCSTTY failed: %s\n", SERRNO);
+ die("ioctl TIOCSCTTY failed: %s\n", SERRNO);
+ close(s);
+ close(m);
execsh();
break;
default: