diff options
author | nsayer <nsayer@FreeBSD.org> | 1999-08-16 02:15:29 +0000 |
---|---|---|
committer | nsayer <nsayer@FreeBSD.org> | 1999-08-16 02:15:29 +0000 |
commit | 8528b2a710f839d81907fa9e849e7f4925605b01 (patch) | |
tree | 764b1842a998906738f76b46f44237acf8c3fc23 /crypto | |
parent | c1664fa91ae2fda93ee5cb64ad1c4d77afb6e717 (diff) | |
download | FreeBSD-src-8528b2a710f839d81907fa9e849e7f4925605b01.zip FreeBSD-src-8528b2a710f839d81907fa9e849e7f4925605b01.tar.gz |
Fix int function without return (make consistent with neighbors)
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/telnet/telnet/commands.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/telnet/telnet/commands.c b/crypto/telnet/telnet/commands.c index 40e7315..f6bece2 100644 --- a/crypto/telnet/telnet/commands.c +++ b/crypto/telnet/telnet/commands.c @@ -1132,6 +1132,7 @@ dokludgemode() send_wont(TELOPT_LINEMODE, 1); send_dont(TELOPT_SGA, 1); send_dont(TELOPT_ECHO, 1); + return 1; } #endif |