]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Fix a build failure coming from the fuzzing branch.
authorSimon Tatham <anakin@pobox.com>
Sat, 7 Nov 2015 13:34:14 +0000 (13:34 +0000)
committerSimon Tatham <anakin@pobox.com>
Sat, 7 Nov 2015 14:53:48 +0000 (14:53 +0000)
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 :-)

ssh.c

diff --git a/ssh.c b/ssh.c
index de8259ed1db41662ad1e38c8004df691c17ea219..cc503029eaf633b61f37365996291546fb1d8122 100644 (file)
--- a/ssh.c
+++ b/ssh.c
@@ -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;
+       crStopV;
 #endif
     }