1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

* fingerprint.c (gpgsm_get_certid): Print the serialand not the

hash after the dot.
This commit is contained in:
Werner Koch 2002-01-13 10:43:21 +00:00
parent 6af7631e54
commit ae439af93a
2 changed files with 6 additions and 1 deletions

View file

@ -246,7 +246,7 @@ gpgsm_get_certid (KsbaCert cert)
sprintf (endp, "%02X", hash[i]);
*endp++ = '.';
for (i=0; i < n; i++, endp += 2)
sprintf (endp, "%02X", hash[i]);
sprintf (endp, "%02X", p[i]);
*endp = 0;
xfree (serial);