summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh.c
diff options
context:
space:
mode:
authormarkus <markus@openbsd.org>2000-03-28 20:31:25 +0000
committermarkus <markus@openbsd.org>2000-03-28 20:31:25 +0000
commitbee6f3ad39c946f2f39815a241ceaf6a000c1961 (patch)
tree82e9a46336df623bb8c59fb1c0943d980c553cfd /usr.bin/ssh/ssh.c
parentKNF (diff)
downloadwireguard-openbsd-bee6f3ad39c946f2f39815a241ceaf6a000c1961.tar.xz
wireguard-openbsd-bee6f3ad39c946f2f39815a241ceaf6a000c1961.zip
replace big switch() with function tables (prepare for ssh2)
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r--usr.bin/ssh/ssh.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c
index c5652eaa67e..bbfb9b50928 100644
--- a/usr.bin/ssh/ssh.c
+++ b/usr.bin/ssh/ssh.c
@@ -11,7 +11,7 @@
*/
#include "includes.h"
-RCSID("$Id: ssh.c,v 1.43 2000/03/23 21:52:02 markus Exp $");
+RCSID("$Id: ssh.c,v 1.44 2000/03/28 20:31:28 markus Exp $");
#include "xmalloc.h"
#include "ssh.h"
@@ -20,6 +20,7 @@ RCSID("$Id: ssh.c,v 1.43 2000/03/23 21:52:02 markus Exp $");
#include "authfd.h"
#include "readconf.h"
#include "uidswap.h"
+#include "channels.h"
/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
Default value is AF_UNSPEC means both IPv4 and IPv6. */