diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2001-06-29 18:38:45 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2001-06-29 18:38:45 +0000 |
commit | 4f5e0c38357fcca4615a77885df995f139ef236b (patch) | |
tree | 41fa0f4d631d032f8713718d098cca9a0c786a5f | |
parent | d7162c24a6515826264df81bd471658b760a986e (diff) |
sync function definition with declaration; ok markus@
-rw-r--r-- | usr.bin/ssh/clientloop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/clientloop.c b/usr.bin/ssh/clientloop.c index 05bcc3add87..70619aa6079 100644 --- a/usr.bin/ssh/clientloop.c +++ b/usr.bin/ssh/clientloop.c @@ -59,7 +59,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: clientloop.c,v 1.78 2001/06/25 08:25:36 markus Exp $"); +RCSID("$OpenBSD: clientloop.c,v 1.79 2001/06/29 18:38:44 stevesk Exp $"); #include "ssh.h" #include "ssh1.h" @@ -1271,7 +1271,7 @@ client_init_dispatch_15(void) dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof); dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose); } -void +static void client_init_dispatch(void) { if (compat20) |