mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-14 21:47:19 +02:00
* call-agent.c (learn_cb): Use log_info instead of log_error on
successful import. * keydb.c (keydb_set_ephemeral): New. (keydb_store_cert): New are ephemeral, changed all callers. * keylist.c (list_external_cb): Store cert as ephemeral. * export.c (gpgsm_export): Kludge to export epehmeral certificates. * gpgsm.c (main): New command --list-external-keys.
This commit is contained in:
parent
031a856a7e
commit
52146943d1
9 changed files with 78 additions and 8 deletions
|
@ -104,7 +104,7 @@ gpgsm_import (CTRL ctrl, int in_fd)
|
|||
{
|
||||
if ( !gpgsm_basic_cert_check (cert) )
|
||||
{
|
||||
if (!keydb_store_cert (cert))
|
||||
if (!keydb_store_cert (cert, 0))
|
||||
{
|
||||
if (opt.verbose)
|
||||
log_info ("certificate imported\n");
|
||||
|
@ -139,7 +139,7 @@ gpgsm_import (CTRL ctrl, int in_fd)
|
|||
|
||||
if ( !gpgsm_basic_cert_check (cert) )
|
||||
{
|
||||
if (!keydb_store_cert (cert))
|
||||
if (!keydb_store_cert (cert, 0))
|
||||
{
|
||||
if (opt.verbose)
|
||||
log_info ("certificate imported\n");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue