From edc23a8aaa2ec878ce4269ff5c22e0a797dec8ac Mon Sep 17 00:00:00 2001 From: ben Date: Sat, 20 Jan 2007 20:05:46 +0000 Subject: [PATCH] Fix compiles on GCC 3.3, which doesn't know about assert(0); git-svn-id: svn://svn.tartarus.org/sgt/putty@7130 cda61777-01e9-0310-a592-d414129be87e --- ssh.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ssh.c b/ssh.c index d6bc812d..137e4607 100644 --- a/ssh.c +++ b/ssh.c @@ -3564,6 +3564,7 @@ static int do_ssh1_login(Ssh ssh, unsigned char *in, int inlen, /* and try again */ } else { assert(0 && "unexpected return from loadrsakey()"); + got_passphrase = FALSE; /* placate optimisers */ } } -- 2.11.0