diff options
author | 2001-12-28 15:06:00 +0000 | |
---|---|---|
committer | 2001-12-28 15:06:00 +0000 | |
commit | 02855125c992695e691e9f3612e5dac0f315adf5 (patch) | |
tree | bbc7a96f31e6e63f05db4f12ef4937184fe2776f /usr.bin/ssh/ssh.c | |
parent | packet_read* no longer return the packet length, since it's not used. (diff) | |
download | wireguard-openbsd-02855125c992695e691e9f3612e5dac0f315adf5.tar.xz wireguard-openbsd-02855125c992695e691e9f3612e5dac0f315adf5.zip |
remove plen from the dispatch fn. it's no longer used.
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r-- | usr.bin/ssh/ssh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index 6e0b83d1593..7a7138d9d4b 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -39,7 +39,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh.c,v 1.156 2001/12/28 14:50:54 markus Exp $"); +RCSID("$OpenBSD: ssh.c,v 1.157 2001/12/28 15:06:00 markus Exp $"); #include <openssl/evp.h> #include <openssl/err.h> @@ -994,7 +994,7 @@ ssh_session(void) } static void -client_subsystem_reply(int type, int plen, u_int32_t seq, void *ctxt) +client_subsystem_reply(int type, u_int32_t seq, void *ctxt) { int id, len; |