diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-07-04 05:10:27 +0000 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-07-04 05:10:27 +0000 |
commit | db47f383e6718b102dfe562e5c80f83330c08593 (patch) | |
tree | b778c6f54d30bb09481fe5c1d4e417d5cd42c66a | |
parent | d6e049cd59712b42ceb6d7cdfec254706c0480a2 (diff) |
- stevesk@cvs.openbsd.org 2001/06/29 18:38:44
[clientloop.c]
sync function definition with declaration; ok markus@
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | clientloop.c | 4 |
2 files changed, 6 insertions, 3 deletions
@@ -105,6 +105,9 @@ | |||
105 | - markus@cvs.openbsd.org 2001/06/29 07:11:01 | 105 | - markus@cvs.openbsd.org 2001/06/29 07:11:01 |
106 | [ssh-keygen.c] | 106 | [ssh-keygen.c] |
107 | initialize early | 107 | initialize early |
108 | - stevesk@cvs.openbsd.org 2001/06/29 18:38:44 | ||
109 | [clientloop.c] | ||
110 | sync function definition with declaration; ok markus@ | ||
108 | 111 | ||
109 | 20010629 | 112 | 20010629 |
110 | - (bal) Removed net_aton() since we don't use it any more | 113 | - (bal) Removed net_aton() since we don't use it any more |
@@ -5932,4 +5935,4 @@ | |||
5932 | - Wrote replacements for strlcpy and mkdtemp | 5935 | - Wrote replacements for strlcpy and mkdtemp |
5933 | - Released 1.0pre1 | 5936 | - Released 1.0pre1 |
5934 | 5937 | ||
5935 | $Id: ChangeLog,v 1.1369 2001/07/04 05:08:39 mouring Exp $ | 5938 | $Id: ChangeLog,v 1.1370 2001/07/04 05:10:27 mouring Exp $ |
diff --git a/clientloop.c b/clientloop.c index 05bcc3add..70619aa60 100644 --- a/clientloop.c +++ b/clientloop.c | |||
@@ -59,7 +59,7 @@ | |||
59 | */ | 59 | */ |
60 | 60 | ||
61 | #include "includes.h" | 61 | #include "includes.h" |
62 | RCSID("$OpenBSD: clientloop.c,v 1.78 2001/06/25 08:25:36 markus Exp $"); | 62 | RCSID("$OpenBSD: clientloop.c,v 1.79 2001/06/29 18:38:44 stevesk Exp $"); |
63 | 63 | ||
64 | #include "ssh.h" | 64 | #include "ssh.h" |
65 | #include "ssh1.h" | 65 | #include "ssh1.h" |
@@ -1271,7 +1271,7 @@ client_init_dispatch_15(void) | |||
1271 | dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof); | 1271 | dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof); |
1272 | dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose); | 1272 | dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose); |
1273 | } | 1273 | } |
1274 | void | 1274 | static void |
1275 | client_init_dispatch(void) | 1275 | client_init_dispatch(void) |
1276 | { | 1276 | { |
1277 | if (compat20) | 1277 | if (compat20) |