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

Enable i18n for W32.

This commit is contained in:
Werner Koch 2010-10-20 15:06:50 +00:00
parent cc99c37549
commit 25b1e76b44
5 changed files with 12 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2010-10-20 Werner Koch <wk@g10code.com>
* verify.c (verify_signatures): Use gpg_strerror on open failure
for consistency of error messages.
* packet.h (PKT_public_key): s/mdc_feature/flags.mdc/. Change all
users.
(PKT_public_key): Split is_disabled into flags.disabled_valid and

View file

@ -96,7 +96,7 @@ verify_signatures (ctrl_t ctrl, int nfiles, char **files )
if( !fp ) {
rc = gpg_error_from_syserror ();
log_error(_("can't open `%s': %s\n"),
print_fname_stdin(sigfile), strerror (errno));
print_fname_stdin(sigfile), gpg_strerror (rc));
goto leave;
}
handle_progress (pfx, fp, sigfile);