diff options
author | Werner Koch <[email protected]> | 2002-04-25 08:31:48 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2002-04-25 08:31:48 +0000 |
commit | a2176634aebf6e0ced4d26dd5be3bc93931a4fcb (patch) | |
tree | cd0080bd207d3f0427c9979a828d1a538fa69c94 /agent/command.c | |
parent | 2002-04-25 Marcus Brinkmann <[email protected]> (diff) | |
download | gnupg-a2176634aebf6e0ced4d26dd5be3bc93931a4fcb.tar.gz gnupg-a2176634aebf6e0ced4d26dd5be3bc93931a4fcb.zip |
* call-agent.c (start_agent): Make copies of old locales and check
for setlocale.
* configure.ac: Check for setlocale.
Diffstat (limited to 'agent/command.c')
-rw-r--r-- | agent/command.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/agent/command.c b/agent/command.c index b405ec61c..e6f34fd39 100644 --- a/agent/command.c +++ b/agent/command.c @@ -498,8 +498,11 @@ cmd_learn (ASSUAN_CONTEXT ctx, char *line) static int option_handler (ASSUAN_CONTEXT ctx, const char *key, const char *value) { - CTRL ctrl = assuan_get_pointer (ctx); +/* CTRL ctrl = assuan_get_pointer (ctx); */ + /* FIXME: We should not change opt. here. It is not a problem right + now but as soon as we are allowing concurrent connections we mess + things up */ if (!strcmp (key, "display")) { if (opt.display) |