diff options
author | Werner Koch <[email protected]> | 2005-07-20 15:05:05 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2005-07-20 15:05:05 +0000 |
commit | 68191d0c935719d9ab171e49b6456372c72cf1c4 (patch) | |
tree | 895ecabf2a925e1e5b8128a509284f1c6d66e61f /sm/server.c | |
parent | (gpgsm_get_certid): Cast printf arg to unsigned. (diff) | |
download | gnupg-68191d0c935719d9ab171e49b6456372c72cf1c4.tar.gz gnupg-68191d0c935719d9ab171e49b6456372c72cf1c4.zip |
* 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
Diffstat (limited to '')
-rw-r--r-- | sm/server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sm/server.c b/sm/server.c index b3816d3d9..87a06ee4e 100644 --- a/sm/server.c +++ b/sm/server.c @@ -1109,7 +1109,7 @@ write_status_text_and_buffer ( int no, const char *string, if (s != buffer) fwrite (buffer, s-buffer, 1, statusfp ); if ( esc ) { - fprintf (statusfp, "%%%02X", *(const byte*)s ); + fprintf (statusfp, "%%%02X", *(const unsigned char*)s ); s++; n--; } buffer = s; |