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/channels.h | |
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/channels.h')
-rw-r--r-- | usr.bin/ssh/channels.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/ssh/channels.h b/usr.bin/ssh/channels.h index 781c49d479a..7cb0c367cbb 100644 --- a/usr.bin/ssh/channels.h +++ b/usr.bin/ssh/channels.h @@ -32,7 +32,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* RCSID("$OpenBSD: channels.h,v 1.62 2002/02/03 17:58:21 markus Exp $"); */ +/* RCSID("$OpenBSD: channels.h,v 1.63 2002/02/05 14:32:55 markus Exp $"); */ #ifndef CHANNEL_H #define CHANNEL_H @@ -145,7 +145,6 @@ void channel_free_all(void); void channel_stop_listening(void); void channel_send_open(int); -void channel_request(int, char *, int); void channel_request_start(int, char *, int); void channel_register_cleanup(int, channel_callback_fn *); void channel_register_confirm(int, channel_callback_fn *); |