From: Ezra Peisach Date: Sat, 5 Aug 1995 13:25:57 +0000 (+0000) Subject: Return value from pty_open_ctty is non-zero on error, not negative X-Git-Tag: krb5-1.0-beta6~1398 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=07dd407d91a243eb2cbdbbe8e2692e8b849e87dc;p=krb5.git Return value from pty_open_ctty is non-zero on error, not negative git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6426 dc483132-0cff-0310-8789-dd5450dbe970 --- 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 + + * 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 * 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);