diff options
author | Marcus Brinkmann <mb@g10code.com> | 2002-04-24 23:52:47 +0200 |
---|---|---|
committer | Marcus Brinkmann <mb@g10code.com> | 2002-04-24 23:52:47 +0200 |
commit | ee6bb32a8bf9adb3d0a48b0d527cda594e49355a (patch) | |
tree | ff9c1c7939f01bd1cc8b0116b87c07235956200f /sm/gpgsm.h | |
parent | * certreqgen.c (gpgsm_genkey): Write status output on success. (diff) | |
download | gnupg2-ee6bb32a8bf9adb3d0a48b0d527cda594e49355a.tar.xz gnupg2-ee6bb32a8bf9adb3d0a48b0d527cda594e49355a.zip |
2002-04-24 Marcus Brinkmann <marcus@g10code.de>
* configure.ac: Check for locale.h.
agent/
2002-04-24 Marcus Brinkmann <marcus@g10code.de>
* agent.h (struct opt): Add members display, ttyname, ttytype,
lc_ctype, and lc_messages.
* gpg-agent.c (enum cmd_and_opt_values): Add oDisplay, oTTYname,
oTTYtype, oLCctype, and LCmessages.
(main): Handle these options.
* command.c (option_handler): New function.
(register_commands): Register option handler.
* query.c (start_pinentry): Pass the various display and tty
options to the pinentry.
sm/
2002-04-24 Marcus Brinkmann <marcus@g10code.de>
* gpgsm.h (struct opt): New members display, ttyname, ttytype,
lc_ctype, lc_messages.
* gpgsm.c (enum cmd_and_opt_values): New members oDisplay,
oTTYname, oTTYtype, oLCctype, oLCmessages.
(opts): New entries for these options.
(main): Handle these new options.
* call-agent.c (start_agent): Set the various display and tty
parameter after resetting.
Diffstat (limited to '')
-rw-r--r-- | sm/gpgsm.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sm/gpgsm.h b/sm/gpgsm.h index 9cba457dd..09a633d4c 100644 --- a/sm/gpgsm.h +++ b/sm/gpgsm.h @@ -39,6 +39,12 @@ struct { const char *homedir; /* configuration directory name */ const char *agent_program; + const char *display; + const char *ttyname; + const char *ttytype; + const char *lc_ctype; + const char *lc_messages; + const char *dirmngr_program; char *outfile; /* name of output file */ |