diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/appl/bsd/ChangeLog | 4 | ||||
| -rw-r--r-- | src/appl/bsd/krlogin.c | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/src/appl/bsd/ChangeLog b/src/appl/bsd/ChangeLog index c5c17f435..4fa2de104 100644 --- a/src/appl/bsd/ChangeLog +++ b/src/appl/bsd/ChangeLog @@ -1,3 +1,7 @@ +Sun Aug 7 04:43:24 1994 Mark Eichin (eichin@cygnus.com) + + * krlogin.c (oob): FWRITE (and out) not needed w/POSIX_TERMIOS + Fri Aug 5 18:47:00 1994 Mark Eichin (eichin@cygnus.com) * configure.in: test for sigprocmask and sigset_t to set POSIX_SIGNALS. diff --git a/src/appl/bsd/krlogin.c b/src/appl/bsd/krlogin.c index 6de27e350..cfb4e132d 100644 --- a/src/appl/bsd/krlogin.c +++ b/src/appl/bsd/krlogin.c @@ -1127,7 +1127,10 @@ jmp_buf rcvtop; krb5_sigtype oob() { - int out = FWRITE, atmark, n; +#ifndef POSIX_TERMIOS + int out = FWRITE; +#endif + int atmark, n; int rcvd = 0; char waste[BUFSIZ], mark; #ifdef POSIX_TERMIOS |
