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

Fix a build failure coming from the fuzzing branch.

Apparently if you maintain a branch for a long time where you only
compile with a non-default ifdef enabled, it becomes possible to not
notice a typo you left in the default branch :-)
This commit is contained in:
Simon Tatham 2015-11-07 13:34:14 +00:00
parent 2057f7a9f8
commit fe16b577ef

2
ssh.c
View File

@ -7136,7 +7136,7 @@ static void do_ssh2_transport(Ssh ssh, const void *vin, int inlen,
ssh->kex->hash->hlen)) {
#ifndef FUZZING
bombout(("Server's host key did not match the signature supplied"));
crStopV;f
crStopV;
#endif
}