mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
Minor fixes
This commit is contained in:
parent
4adb5c03e7
commit
7ddd27a836
@ -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
|
||||
|
@ -2034,8 +2034,8 @@ send_client_notifications (void)
|
||||
killidx++;
|
||||
}
|
||||
}
|
||||
#endif /*!HAVE_W32_SYSTEM*/
|
||||
}
|
||||
#endif /*!HAVE_W32_SYSTEM*/
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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.
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user