diff options
| author | Werner Koch <[email protected]> | 2010-09-01 09:48:35 +0000 |
|---|---|---|
| committer | Werner Koch <[email protected]> | 2010-09-01 09:48:35 +0000 |
| commit | 9a9b3da58ff97397e89ca59ef79f86c03a2a9ad6 (patch) | |
| tree | 36231916783c4f4f4fc8063015704ce1b3f18abe /agent/call-pinentry.c | |
| parent | 2010-09-01 Marcus Brinkmann <[email protected]> (diff) | |
| download | gnupg-9a9b3da58ff97397e89ca59ef79f86c03a2a9ad6.tar.gz gnupg-9a9b3da58ff97397e89ca59ef79f86c03a2a9ad6.zip | |
Use passphrase caching for import and genkey.
Diffstat (limited to 'agent/call-pinentry.c')
| -rw-r--r-- | agent/call-pinentry.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/agent/call-pinentry.c b/agent/call-pinentry.c index d00fdf6fc..6ab845a0c 100644 --- a/agent/call-pinentry.c +++ b/agent/call-pinentry.c @@ -316,6 +316,12 @@ start_pinentry (ctrl_t ctrl) log_error ("can't allocate assuan context: %s\n", gpg_strerror (rc)); return rc; } + /* We don't want to log the pinentry communication to make the logs + easier to read. We might want to add a new debug option to enable + pinentry logging. */ +#ifdef ASSUAN_NO_LOGGING + assuan_set_flag (ctx, ASSUAN_NO_LOGGING, 1); +#endif /* Connect to the pinentry and perform initial handshaking. Note that atfork is used to change the environment for pinentry. We |
