diff options
author | Werner Koch <[email protected]> | 2002-01-19 18:21:14 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2002-01-19 18:21:14 +0000 |
commit | 88bacd26a2f58230cf8228a3ca903eec4a5f6a31 (patch) | |
tree | 4c1fb92fb857063e2d5210e37d42751164043155 /sm/call-agent.c | |
parent | More error codes and mappings (diff) | |
download | gnupg-88bacd26a2f58230cf8228a3ca903eec4a5f6a31.tar.gz gnupg-88bacd26a2f58230cf8228a3ca903eec4a5f6a31.zip |
* server.c (gpgsm_server): Use assuan_deinit_server and setup
assuan logging if enabled.
* call-agent.c (inq_ciphertext_cb): Don't show the session key in
an Assuan log file.
* gpgsm.c (my_strusage): Take bugreport address from configure.ac
Diffstat (limited to '')
-rw-r--r-- | sm/call-agent.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sm/call-agent.c b/sm/call-agent.c index 54c2d4e07..e7ecbd4c2 100644 --- a/sm/call-agent.c +++ b/sm/call-agent.c @@ -264,7 +264,9 @@ inq_ciphertext_cb (void *opaque, const char *keyword) struct cipher_parm_s *parm = opaque; AssuanError rc; + assuan_begin_confidential (parm->ctx); rc = assuan_send_data (parm->ctx, parm->ciphertext, parm->ciphertextlen); + assuan_end_confidential (parm->ctx); return rc; } |