r9689@catbus: nickm | 2007-01-19 22:34:20 -0500

And remove another strcpy.


svn:r9375
This commit is contained in:
Nick Mathewson 2007-01-20 03:35:03 +00:00
parent c57ef84fc5
commit ef0720f909

View File

@ -1027,7 +1027,7 @@ crypto_pk_get_fingerprint(crypto_pk_env_t *pk, char *fp_out, int add_space)
NEVER_TERMINATE)<0)
return -1;
} else {
strcpy(fp_out, hexdigest);
strncpy(fp_out, hexdigest, HEX_DIGEST_LEN+1);
}
return 0;
}