From 1549f66b7aa0085182a5704b55eaf38acb4e9d29 Mon Sep 17 00:00:00 2001 From: nsayer Date: Mon, 16 Aug 1999 02:15:29 +0000 Subject: [PATCH] Fix int function without return (make consistent with neighbors) git-svn-id: http://svn0.us-east.freebsd.org/base/head/contrib/telnet@49861 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- telnet/commands.c | 1 + 1 file changed, 1 insertion(+) diff --git a/telnet/commands.c b/telnet/commands.c index 40e7315..f6bece2 100644 --- a/telnet/commands.c +++ b/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