X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/afc47154b2c41b1f983467a1bd34894f15c416e4..5d03233bc14bfcf7a60ce2364cbd9e6a732ce8d6:/sshrsa.c diff --git a/sshrsa.c b/sshrsa.c index 9a62491a..63439447 100644 --- a/sshrsa.c +++ b/sshrsa.c @@ -258,7 +258,7 @@ static char *rsa2_fingerprint(void *key) { MD5Final(digest, &md5c); - sprintf(buffer, "%d ", ssh1_bignum_bitcount(rsa->modulus)); + sprintf(buffer, "ssh-rsa %d ", ssh1_bignum_bitcount(rsa->modulus)); for (i = 0; i < 16; i++) sprintf(buffer+strlen(buffer), "%s%02x", i?":":"", digest[i]); ret = smalloc(strlen(buffer)+1);