diff options
author | Werner Koch <[email protected]> | 2018-03-27 06:48:00 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2018-03-27 06:48:00 +0000 |
commit | d4dc4245bf0221d2db4118718fc2528ecf43b97b (patch) | |
tree | 5912abc9b9ba056a882bcd933105ba4dde73c560 /scd/app-openpgp.c | |
parent | Change license of argparse.c back to LGPLv2.1 (diff) | |
parent | agent: Make the request origin a part of the cache items. (diff) | |
download | gnupg-d4dc4245bf0221d2db4118718fc2528ecf43b97b.tar.gz gnupg-d4dc4245bf0221d2db4118718fc2528ecf43b97b.zip |
Merge branch 'STABLE-BRANCH-2-2' into master
Diffstat (limited to 'scd/app-openpgp.c')
-rw-r--r-- | scd/app-openpgp.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scd/app-openpgp.c b/scd/app-openpgp.c index 54f04c612..dc775f77e 100644 --- a/scd/app-openpgp.c +++ b/scd/app-openpgp.c @@ -1018,7 +1018,7 @@ do_getattr (app_t app, ctrl_t ctrl, const char *name) snprintf (tmp, sizeof tmp, "gc=%d ki=%d fc=%d pd=%d mcl3=%u aac=%d " - "sm=%d si=%u dec=%d bt=%d", + "sm=%d si=%u dec=%d bt=%d kdf=%d", app->app_local->extcap.get_challenge, app->app_local->extcap.key_import, app->app_local->extcap.change_force_chv, @@ -1032,7 +1032,8 @@ do_getattr (app_t app, ctrl_t ctrl, const char *name) : 0), app->app_local->status_indicator, app->app_local->extcap.has_decrypt, - app->app_local->extcap.has_button); + app->app_local->extcap.has_button, + app->app_local->extcap.kdf_do); send_status_info (ctrl, table[idx].name, tmp, strlen (tmp), NULL, 0); return 0; } |