1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 01:48:00 +00:00

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.
This commit is contained in:
Simon Tatham 2022-07-16 11:24:59 +01:00
parent f1c8298000
commit a50178eba7

View File

@ -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.