diff options
author | 2001-04-15 01:35:22 +0000 | |
---|---|---|
committer | 2001-04-15 01:35:22 +0000 | |
commit | 62abf4a30b82fa92101f35c929de06b561e85674 (patch) | |
tree | b67ec6f8eafbd7d72f1497e12ccd08da8d2cb0a5 /usr.bin/ssh/ttymodes.c | |
parent | oops, commit protos (diff) | |
download | wireguard-openbsd-62abf4a30b82fa92101f35c929de06b561e85674.tar.xz wireguard-openbsd-62abf4a30b82fa92101f35c929de06b561e85674.zip |
fix comments
Diffstat (limited to 'usr.bin/ssh/ttymodes.c')
-rw-r--r-- | usr.bin/ssh/ttymodes.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/ttymodes.c b/usr.bin/ssh/ttymodes.c index 9ce3fbcc47e..6124cb4b12b 100644 --- a/usr.bin/ssh/ttymodes.c +++ b/usr.bin/ssh/ttymodes.c @@ -43,7 +43,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ttymodes.c,v 1.12 2001/04/14 16:33:20 stevesk Exp $"); +RCSID("$OpenBSD: ttymodes.c,v 1.13 2001/04/15 01:35:22 stevesk Exp $"); #include "packet.h" #include "log.h" @@ -428,7 +428,7 @@ tty_parse_modes(int fd, int *n_bytes_ptr) } else { /* * SSH2: - * Opcodes 0 to 159 are defined to have + * Opcodes 1 to 159 are defined to have * a uint32 argument. * Opcodes 160 to 255 are undefined and * cause parsing to stop. @@ -453,7 +453,7 @@ set: return; /* Don't process bytes passed */ } if (failure == -1) - return; /* Packet parsed ok but tty stuff failed */ + return; /* Packet parsed ok but tcgetattr() failed */ /* Set the new modes for the terminal. */ if (tcsetattr(fd, TCSANOW, &tio) == -1) |