aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2011-12-15 20:45:35 +0000
committerNIIBE Yutaka <[email protected]>2012-06-15 07:38:09 +0000
commitd138fe5c30c877856b4c397147bb0090705821f8 (patch)
treef7c8fe08dc70ea5672066f131f8e3bfb5d16c25d
parentscd: Fix for card change returning GPG_ERR_CARD_RESET. (diff)
downloadgnupg-d138fe5c30c877856b4c397147bb0090705821f8.tar.gz
gnupg-d138fe5c30c877856b4c397147bb0090705821f8.zip
scd: Prefer application Geldkarte over DINSIG.
* scd/app.c (select_application): Reorder application tests. -- Although the DINSIG application is available on most German cards, it is in reality not used. Thus showing the Geldkarte application is more desirable for a good user experience. Conflicts: scd/app.c
-rw-r--r--scd/app.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/scd/app.c b/scd/app.c
index a23c4a546..7cbbf6ea6 100644
--- a/scd/app.c
+++ b/scd/app.c
@@ -381,11 +381,11 @@ select_application (ctrl_t ctrl, int slot, const char *name, app_t *r_app)
err = app_select_nks (app);
if (err && is_app_allowed ("p15") && (!name || !strcmp (name, "p15")))
err = app_select_p15 (app);
- if (err && is_app_allowed ("dinsig") && (!name || !strcmp (name, "dinsig")))
- err = app_select_dinsig (app);
if (err && is_app_allowed ("geldkarte")
&& (!name || !strcmp (name, "geldkarte")))
err = app_select_geldkarte (app);
+ if (err && is_app_allowed ("dinsig") && (!name || !strcmp (name, "dinsig")))
+ err = app_select_dinsig (app);
if (err && name)
err = gpg_error (GPG_ERR_NOT_SUPPORTED);
@@ -419,8 +419,10 @@ get_supported_applications (void)
"openpgp",
"nks",
"p15",
- "dinsig",
"geldkarte",
+ "dinsig",
+ /* Note: "undefined" is not listed here because it needs special
+ treatment by the client. */
NULL
};
int idx;