diff options
author | Werner Koch <[email protected]> | 2007-11-19 16:03:50 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2007-11-19 16:03:50 +0000 |
commit | 55ba204bfa848c2e591a29fedc9f103103493a57 (patch) | |
tree | e37263e4d3a25e2aa300faf4c5240191b54ea1a7 /agent/command-ssh.c | |
parent | Updated (diff) | |
download | gnupg-55ba204bfa848c2e591a29fedc9f103103493a57.tar.gz gnupg-55ba204bfa848c2e591a29fedc9f103103493a57.zip |
Started to implement the audit log feature.
Pass PINENTRY_USER_DATA and XAUTHORITY to Pinentry.
Improved support for the quality bar.
Minor internal restructuring.
Translation fixes.
Diffstat (limited to 'agent/command-ssh.c')
-rw-r--r-- | agent/command-ssh.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/agent/command-ssh.c b/agent/command-ssh.c index 48bf83238..9e2a57d6f 100644 --- a/agent/command-ssh.c +++ b/agent/command-ssh.c @@ -2871,6 +2871,10 @@ start_command_handler_ssh (ctrl_t ctrl, gnupg_fd_t sock_client) ctrl->lc_ctype = strdup (opt.startup_lc_ctype); if (!ctrl->lc_messages && opt.startup_lc_messages) ctrl->lc_messages = strdup (opt.startup_lc_messages); + if (!ctrl->xauthority && opt.startup_xauthority) + ctrl->xauthority = strdup (opt.startup_xauthority); + if (!ctrl->pinentry_user_data && opt.startup_pinentry_user_data) + ctrl->pinentry_user_data = strdup (opt.startup_pinentry_user_data); /* Create stream from socket. */ |