diff options
author | David Shaw <[email protected]> | 2002-09-13 12:59:31 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2002-09-13 12:59:31 +0000 |
commit | baffecaca26432dfaa4b5d658862f4c75de889a9 (patch) | |
tree | df2fb5958e65dfc69be92262283a17d463c2baea /g10/g10.c | |
parent | updated RISC OS stuff (diff) | |
download | gnupg-baffecaca26432dfaa4b5d658862f4c75de889a9.tar.gz gnupg-baffecaca26432dfaa4b5d658862f4c75de889a9.zip |
Import from stable branch.
2002-09-13 David Shaw <[email protected]>
* getkey.c (check_revocation_keys): Move....
* main.h, sig-check.c (check_revocation_keys): to here. Also
return the signature_check error code rather than 0/1 and cache
the sig result.
* sig-check.c (check_key_signature2): Divert to
check_revocation_keys if a revocation sig is made by someone other
than the pk owner.
* getkey.c (merge_selfsigs_main): Tidy.
2002-09-13 Werner Koch <[email protected]>
* g10.c (main) [__MINGW32__]: Activate oLoadExtension.
Diffstat (limited to '')
-rw-r--r-- | g10/g10.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1385,7 +1385,7 @@ main( int argc, char **argv ) case oAlwaysTrust: opt.always_trust = 1; break; case oLoadExtension: #ifndef __riscos__ -#ifdef USE_DYNAMIC_LINKING +#if defined(USE_DYNAMIC_LINKING) || defined(__MINGW32__) if(check_permissions(pargs.r.ret_str,2)) log_info(_("cipher extension \"%s\" not loaded due to " "unsafe permissions\n"),pargs.r.ret_str); |