From: jacob Date: Fri, 4 Nov 2005 23:21:42 +0000 (+0000) Subject: Placate a compiler warning introduced in r6437. X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/43536490db8a8c1349aaa7aeeb3c7cc29d9da484 Placate a compiler warning introduced in r6437. (I forgot we usually compile with -Werror on Unix, oops.) git-svn-id: svn://svn.tartarus.org/sgt/putty@6446 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/ssh.c b/ssh.c index 7936fd0e..5ca50402 100644 --- a/ssh.c +++ b/ssh.c @@ -3462,6 +3462,8 @@ static int do_ssh1_login(Ssh ssh, unsigned char *in, int inlen, s->tried_publickey = 0; got_passphrase = FALSE; /* and try again */ + } else { + assert(0 && "unexpected return from loadrsakey()"); } }