Minor fixes

This commit is contained in:
Werner Koch 2009-01-12 10:08:55 +00:00
parent 4adb5c03e7
commit 7ddd27a836
4 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2009-01-12 Werner Koch <wk@g10code.com>
* command.c (send_client_notifications) [HAVE_W32_SYSTEM]: Fix
brackets.
2009-01-08 Werner Koch <wk@g10code.com>
* iso7816.c (iso7816_read_record, iso7816_read_binary): Pass 0 for

View File

@ -2034,8 +2034,8 @@ send_client_notifications (void)
killidx++;
}
}
#endif /*!HAVE_W32_SYSTEM*/
}
#endif /*!HAVE_W32_SYSTEM*/
}
}
}

View File

@ -1,3 +1,7 @@
2009-01-12 Werner Koch <wk@g10code.com>
* keylist.c (print_utf8_extn_raw): Cast printf precision argument.
2009-01-08 Werner Koch <wk@g10code.com>
* fingerprint.c (gpgsm_get_keygrip_hexstring): Add error detection.

View File

@ -597,7 +597,7 @@ print_utf8_extn_raw (estream_t fp, int indent,
es_fprintf (fp, "%*s[%s]\n", indent, "", gpg_strerror (err));
return;
}
es_fprintf (fp, "%*s(%.*s)\n", indent, "", objlen, der);
es_fprintf (fp, "%*s(%.*s)\n", indent, "", (int)objlen, der);
}