X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/98f022f5131859896a6c284fbe304c1c83f7de41..f37caa117ec771aa41b0f03ab351fc4eb97daafd:/sshpubk.c diff --git a/sshpubk.c b/sshpubk.c index 30be7d3d..ed16534d 100644 --- a/sshpubk.c +++ b/sshpubk.c @@ -213,7 +213,7 @@ int saversakey(char *filename, struct RSAKey *key, char *passphrase) { * containing the bit count, then two bignums containing the * modulus and exponent respectively. */ - PUT_32BIT(p, ssh1_bignum_bitcount(key->modulus)); p += 4; + PUT_32BIT(p, bignum_bitcount(key->modulus)); p += 4; p += ssh1_write_bignum(p, key->modulus); p += ssh1_write_bignum(p, key->exponent);