From a50178eba79ecbbeb9949f2c9827fe14b50c1941 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sat, 16 Jul 2022 11:24:59 +0100 Subject: [PATCH] Fix typo in #undef. In the macro automation for ssh2_bpp_check_unimplemented, I #defined SSH2_BITMAP_WORD, and 20 lines later, tried to #undef it by the wrong spelling. Of course this gave no error, so I didn't notice! But I spotted it just now, so let's fix it. --- ssh/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssh/common.c b/ssh/common.c index d5e1d55f..04b341ae 100644 --- a/ssh/common.c +++ b/ssh/common.c @@ -840,7 +840,7 @@ bool ssh2_bpp_check_unimplemented(BinaryPacketProtocol *bpp, PktIn *pktin) #undef BITMAP_UNIVERSAL #undef BITMAP_CONDITIONAL -#undef SSH1_BITMAP_WORD +#undef SSH2_BITMAP_WORD /* ---------------------------------------------------------------------- * Centralised component of SSH host key verification.