diff options
author | Werner Koch <[email protected]> | 2008-04-01 15:08:57 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2008-04-01 15:08:57 +0000 |
commit | 80f77d79c516ca636cfc9382effa5f224f31f0f4 (patch) | |
tree | ada520eaf81592573a79719d51bc9a1dda42f0d4 /sm | |
parent | Fix problem when using the fallback dirmngr. (diff) | |
download | gnupg-80f77d79c516ca636cfc9382effa5f224f31f0f4.tar.gz gnupg-80f77d79c516ca636cfc9382effa5f224f31f0f4.zip |
Fix a problem with dirmngr looked up certificates.
Typo fixes.
Diffstat (limited to 'sm')
-rw-r--r-- | sm/call-dirmngr.c | 2 | ||||
-rw-r--r-- | sm/certchain.c | 4 | ||||
-rw-r--r-- | sm/keydb.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/sm/call-dirmngr.c b/sm/call-dirmngr.c index 34de7c166..63083cc92 100644 --- a/sm/call-dirmngr.c +++ b/sm/call-dirmngr.c @@ -703,7 +703,7 @@ lookup_status_cb (void *opaque, const char *line) } -/* Run the Directroy Managers lookup command using the pattern +/* Run the Directory Manager's lookup command using the pattern compiled from the strings given in NAMES. The caller must provide the callback CB which will be passed cert by cert. Note that CTRL is optional. With CACHE_ONLY the dirmngr will search only its own diff --git a/sm/certchain.c b/sm/certchain.c index f9751752f..05a6ace04 100644 --- a/sm/certchain.c +++ b/sm/certchain.c @@ -596,9 +596,9 @@ find_up (ctrl_t ctrl, KEYDB_HANDLE kh, { rc = keydb_search_issuer_sn (kh, s, authidno); if (rc) - keydb_search_reset (kh); + keydb_search_reset (kh); - /* In case of an error, try to get the certifcate from the + /* In case of an error, try to get the certificate from the dirmngr. That is done by trying to put that certifcate into the ephemeral DB and let the code below do the actual retrieve. Thus there is no error checking. diff --git a/sm/keydb.c b/sm/keydb.c index 1fbf9b6c1..a6efcc4cd 100644 --- a/sm/keydb.c +++ b/sm/keydb.c @@ -392,7 +392,7 @@ keydb_set_ephemeral (KEYDB_HANDLE hd, int yes) /* If the keyring has not yet been locked, lock it now. This - operation is required before any update opeations; it is optionaly + operation is required before any update operation; it is optional for an insert operation. The lock is released with keydb_released. */ gpg_error_t |