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

* keylist.c (email_kludge): Reworked.

* certdump.c (gpgsm_print_serial, gpgsm_dump_serial): Cast printf
arg to unsigned.
* call-dirmngr.c (gpgsm_dirmngr_run_command): Ditto
This commit is contained in:
Werner Koch 2005-07-20 15:05:05 +00:00
parent 8889f4a2ee
commit 68191d0c93
11 changed files with 62 additions and 15 deletions

View file

@ -827,7 +827,7 @@ gpgsm_dirmngr_run_command (CTRL ctrl, const char *command,
*p++ = '+';
else if (!isprint (*s) || *s == '+')
{
sprintf (p, "%%%02X", *s);
sprintf (p, "%%%02X", *(const unsigned char *)s);
p += 3;
}
else