1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-18 00:49:50 +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

@ -1,3 +1,8 @@
2002-01-13 Werner Koch <wk@gnupg.org>
* fingerprint.c (gpgsm_get_certid): Print the serialand not the
hash after the dot.
2002-01-11 Werner Koch <wk@gnupg.org>
* call-dirmngr.c: New.

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);