diff options
author | 2000-03-28 20:31:25 +0000 | |
---|---|---|
committer | 2000-03-28 20:31:25 +0000 | |
commit | bee6f3ad39c946f2f39815a241ceaf6a000c1961 (patch) | |
tree | 82e9a46336df623bb8c59fb1c0943d980c553cfd /usr.bin/ssh/ssh.c | |
parent | KNF (diff) | |
download | wireguard-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.c | 3 |
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. */ |