diff options
Diffstat (limited to '')
-rw-r--r-- | agent/call-scd.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/agent/call-scd.c b/agent/call-scd.c index 51d9abd70..6438693af 100644 --- a/agent/call-scd.c +++ b/agent/call-scd.c @@ -1324,3 +1324,12 @@ agent_card_scd (ctrl_t ctrl, const char *cmdline, return unlock_scd (ctrl, 0); } + +void +agent_card_killscd (void) +{ + if (primary_scd_ctx == NULL) + return; + assuan_transact (primary_scd_ctx, "KILLSCD", + NULL, NULL, NULL, NULL, NULL, NULL); +} |