diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/util/pty/ChangeLog | 5 | ||||
| -rw-r--r-- | src/util/pty/open_slave.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/util/pty/ChangeLog b/src/util/pty/ChangeLog index fc626203a..02566df73 100644 --- a/src/util/pty/ChangeLog +++ b/src/util/pty/ChangeLog @@ -1,3 +1,8 @@ +Sat Aug 5 01:00:35 1995 Ezra Peisach <epeisach@kangaroo.mit.edu> + + * open_slave.c (pty_open_slave): pty_open_ctty returns != 0 on + error, not less than. + Fri Aug 4 13:59:11 1995 Theodore Y. Ts'o <tytso@dcl> * libpty.h (pty_cleanup): Fix argument type of pid to patch that diff --git a/src/util/pty/open_slave.c b/src/util/pty/open_slave.c index 11c4f6cca..bcd13779f 100644 --- a/src/util/pty/open_slave.c +++ b/src/util/pty/open_slave.c @@ -68,7 +68,7 @@ return PTY_OPEN_SLAVE_CHMODFAIL; #endif /*HAVE_REVOKE*/ /* Open the pty for real. */ - if (( retval = pty_open_ctty ( slave, fd)) < 0 ) { + if (( retval = pty_open_ctty ( slave, fd)) != 0 ) { return PTY_OPEN_SLAVE_OPENFAIL; } return pty_initialize_slave (*fd); |
