diff options
author | Werner Koch <[email protected]> | 2004-06-06 13:00:59 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2004-06-06 13:00:59 +0000 |
commit | f289f433b6d7f0b5ac76e03853ce628f23e3cdc2 (patch) | |
tree | 4170844bd2e7c143fab1bf498d9136a0fe021a1f /sm/keydb.c | |
parent | * util.h (xtrycalloc_secure,xtrymalloc_secure): New. (diff) | |
download | gnupg-f289f433b6d7f0b5ac76e03853ce628f23e3cdc2.tar.gz gnupg-f289f433b6d7f0b5ac76e03853ce628f23e3cdc2.zip |
* configure.ac: Require libksba 0.9.7.
* certreqgen.c (get_parameter_uint, create_request): Create
an extension for key usage when requested.
* gpgsm.c (main): Install emergency_cleanup also as an atexit
handler.
* verify.c (gpgsm_verify): Removed the separate error code
handling for KSBA. We use shared error codes anyway.
* export.c (export_p12): Removed debugging code.
* encrypt.c (gpgsm_encrypt): Put the session key in to secure memory.
Diffstat (limited to 'sm/keydb.c')
-rw-r--r-- | sm/keydb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sm/keydb.c b/sm/keydb.c index 8832643b9..6c5c77364 100644 --- a/sm/keydb.c +++ b/sm/keydb.c @@ -412,7 +412,7 @@ lock_all (KEYDB_HANDLE hd) int i, rc = 0; /* Fixme: This locking scheme may lead to deadlock if the resources - are not added in the same order all processes. We are + are not added in the same order by all processes. We are currently only allowing one resource so it is not a problem. */ for (i=0; i < hd->used; i++) { @@ -1051,7 +1051,7 @@ classify_user_id (const char *name, * we set it to the correct value right at the end of this function */ memset (desc, 0, sizeof *desc); *force_exact = 0; - /* skip leading spaces. Fixme: what about trailing white space? */ + /* Skip leading spaces. Fixme: what about trailing white space? */ for(s = name; *s && spacep (s); s++ ) ; |