]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Update a couple of messages to be clearer to users who don't have
authorSimon Tatham <anakin@pobox.com>
Tue, 6 Mar 2001 09:29:43 +0000 (09:29 +0000)
committerSimon Tatham <anakin@pobox.com>
Tue, 6 Mar 2001 09:29:43 +0000 (09:29 +0000)
access to complete documentation (ie all of them at the moment :-)

[originally from svn r984]

ssh.c

diff --git a/ssh.c b/ssh.c
index da2ca51fe48765b4b0fd56e61d725dc88bc7e44e..29f2a6153eecaacdc595e4f79303f98ed4bcbaad 100644 (file)
--- a/ssh.c
+++ b/ssh.c
@@ -1549,7 +1549,7 @@ static int do_ssh1_login(unsigned char *in, int inlen, int ispkt)
             if (response) {
                 p = response + 5;
                 nkeys = GET_32BIT(p); p += 4;
-                { char buf[64]; sprintf(buf, "Pageant has %d keys", nkeys);
+                { char buf[64]; sprintf(buf, "Pageant has %d SSH1 keys", nkeys);
                     logevent(buf); }
                 for (i = 0; i < nkeys; i++) {
                     static struct RSAKey key;
@@ -2933,7 +2933,7 @@ static void do_ssh2_authconn(unsigned char *in, int inlen, int ispkt)
                if (response) {
                    p = response + 5;
                    nkeys = GET_32BIT(p); p += 4;
-                   { char buf[64]; sprintf(buf, "Pageant has %d keys", nkeys);
+                   { char buf[64]; sprintf(buf, "Pageant has %d SSH2 keys", nkeys);
                        logevent(buf); }
                    for (i = 0; i < nkeys; i++) {
                        static char *pkblob, *alg, *commentp;