[git] GnuPG - branch, master, updated. gnupg-2.1.0beta3-145-gc27315f
by NIIBE Yutaka
cvs at cvs.gnupg.org
Tue Feb 5 07:08:42 CET 2013
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The GNU Privacy Guard".
The branch, master has been updated
via c27315fc6466cceb862c9e67755a8e044e9b7688 (commit)
from e791ac6683bfb90d5e40c0103324784bd58535c9 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit c27315fc6466cceb862c9e67755a8e044e9b7688
Author: NIIBE Yutaka <gniibe at fsij.org>
Date: Tue Feb 5 14:59:29 2013 +0900
scd: Fix check_keypad_request.
* scd/app-openpgp.c (check_keypad_request): 0 means not to use pinpad.
diff --git a/scd/app-openpgp.c b/scd/app-openpgp.c
index dc35295..3693833 100644
--- a/scd/app-openpgp.c
+++ b/scd/app-openpgp.c
@@ -1554,7 +1554,7 @@ check_keypad_request (app_t app, pininfo_t *pininfo, int admin_pin)
else
pininfo->fixedlen = app->app_local->keypad.fixedlen_user;
- if (pininfo->fixedlen < 0 /* User requests disable pinpad. */
+ if (pininfo->fixedlen == 0 /* User requests disable pinpad. */
|| pininfo->fixedlen < pininfo->minlen
|| pininfo->fixedlen > pininfo->maxlen
/* Reader doesn't have the capability to input a PIN which
-----------------------------------------------------------------------
Summary of changes:
scd/app-openpgp.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
The GNU Privacy Guard
http://git.gnupg.org
More information about the Gnupg-commits
mailing list