From fe16b577efd7f649828cfe18c1666eb2607bfa9a Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sat, 7 Nov 2015 13:34:14 +0000 Subject: [PATCH] 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 :-) --- ssh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssh.c b/ssh.c index de8259ed..cc503029 100644 --- 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;f + crStopV; #endif } -- 2.45.2