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