From 3229d468b9a1ac26ec5485213b442364fdf8919c Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Wed, 17 Oct 2018 19:28:19 +0100 Subject: [PATCH] Remove an obsolete declaration. ssh1_bpp_requested_compression was removed in commit 344ec3aec, but its header-file declaration outlived it by mistake. --- sshbpp.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/sshbpp.h b/sshbpp.h index dc1b995d..e1b4622d 100644 --- a/sshbpp.h +++ b/sshbpp.h @@ -56,11 +56,6 @@ BinaryPacketProtocol *ssh1_bpp_new(LogContext *logctx); void ssh1_bpp_new_cipher(BinaryPacketProtocol *bpp, const struct ssh1_cipheralg *cipher, const void *session_key); -/* requested_compression() notifies the SSH-1 BPP that we've just sent - * a request to enable compression, which means that on receiving the - * next SSH1_SMSG_SUCCESS or SSH1_SMSG_FAILURE message, it should set - * up zlib compression if it was SUCCESS. */ -void ssh1_bpp_requested_compression(BinaryPacketProtocol *bpp); /* Helper routine which does common BPP initialisation, e.g. setting * up in_pq and out_pq, and initialising input_consumer. */