diff options
author | Werner Koch <[email protected]> | 2004-02-18 17:00:21 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2004-02-18 17:00:21 +0000 |
commit | 1a709b341c23758de4b146a9702ef9d96898d188 (patch) | |
tree | 4dbff656b20dbe98c69ff0bb293ce4afad29506b /sm/keydb.c | |
parent | * sc-investigate.c (main): Setup the used character set. (diff) | |
download | gnupg-1a709b341c23758de4b146a9702ef9d96898d188.tar.gz gnupg-1a709b341c23758de4b146a9702ef9d96898d188.zip |
* gpgsm.c (set_debug): Set the new --debug-level flags.
(main): New option --gpgconf-list.
(main): Do not setup -u and -r keys when not required.
(main): Setup the used character set.
* keydb.c (keydb_add_resource): Print a hint to start the
gpg-agent.
Diffstat (limited to '')
-rw-r--r-- | sm/keydb.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sm/keydb.c b/sm/keydb.c index f770135c1..ab30ba15d 100644 --- a/sm/keydb.c +++ b/sm/keydb.c @@ -188,6 +188,8 @@ keydb_add_resource (const char *url, int force, int secret) rc = gpg_error (gpg_err_code_from_errno (errno)); log_error (_("error creating keybox `%s': %s\n"), filename, strerror(errno)); + if (errno == ENOENT) + log_info (_("you may want to start the gpg-agent first\n")); goto leave; } |