1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

* 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
This commit is contained in:
Werner Koch 2002-01-19 18:21:14 +00:00
parent 08e10cd52f
commit 88bacd26a2
4 changed files with 16 additions and 2 deletions

View file

@ -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;
}