From 43536490db8a8c1349aaa7aeeb3c7cc29d9da484 Mon Sep 17 00:00:00 2001 From: jacob Date: Fri, 4 Nov 2005 23:21:42 +0000 Subject: [PATCH] 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 --- ssh.c | 2 ++ 1 file changed, 2 insertions(+) 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()"); } } -- 2.11.0