diff options
author | 2002-02-05 14:32:55 +0000 | |
---|---|---|
committer | 2002-02-05 14:32:55 +0000 | |
commit | 99fa6ab70c696e4c1c87f031c239ba7bfa8423b8 (patch) | |
tree | f46dc47da11a59bbdae19679aaa85ebcb1787522 /usr.bin/ssh/ssh.c | |
parent | o) Fix memory leak in _auth_checklogin(), auth_approval(), auth_close() and (diff) | |
download | wireguard-openbsd-99fa6ab70c696e4c1c87f031c239ba7bfa8423b8.tar.xz wireguard-openbsd-99fa6ab70c696e4c1c87f031c239ba7bfa8423b8.zip |
merge channel_request() into channel_request_start()
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r-- | usr.bin/ssh/ssh.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index 5aec17c6d12..1e9d2c8070b 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.160 2002/02/03 17:58:21 markus Exp $"); +RCSID("$OpenBSD: ssh.c,v 1.161 2002/02/05 14:32:55 markus Exp $"); #include <openssl/evp.h> #include <openssl/err.h> @@ -1090,7 +1090,8 @@ ssh_session2_setup(int id, void *arg) packet_put_string(buffer_ptr(&command), buffer_len(&command)); packet_send(); } else { - channel_request(id, "shell", 0); + channel_request_start(id, "shell", 0); + packet_send(); } /* channel_callback(id, SSH2_MSG_OPEN_CONFIGMATION, client_init, 0); */ |