From: ben Date: Sat, 20 Jan 2007 20:05:46 +0000 (+0000) Subject: Fix compiles on GCC 3.3, which doesn't know about assert(0); X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/edc23a8aaa2ec878ce4269ff5c22e0a797dec8ac 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 --- 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 */ } }