diff options
author | Werner Koch <[email protected]> | 2009-09-30 15:28:38 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2009-09-30 15:28:38 +0000 |
commit | 27c1b4bef84dcb3a77147887817f228ced8c1b31 (patch) | |
tree | 27817fb6ac1ae22d6bba472de9f55e998534c3df /sm | |
parent | Rename encode.c to encrypt.c. (diff) | |
download | gnupg-27c1b4bef84dcb3a77147887817f228ced8c1b31.tar.gz gnupg-27c1b4bef84dcb3a77147887817f228ced8c1b31.zip |
Some changes to suport g13.
Diffstat (limited to 'sm')
-rw-r--r-- | sm/ChangeLog | 4 | ||||
-rw-r--r-- | sm/gpgsm.c | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/sm/ChangeLog b/sm/ChangeLog index f26bcd01a..e68d5a749 100644 --- a/sm/ChangeLog +++ b/sm/ChangeLog @@ -1,3 +1,7 @@ +2009-09-30 Werner Koch <[email protected]> + + * gpgsm.c (main): Remove obsolete GCRYCTL_DISABLE_INTERNAL_LOCKING. + 2009-09-23 Marcus Brinkmann <[email protected]> * gpgsm.c (main): Update to new assuan API. diff --git a/sm/gpgsm.c b/sm/gpgsm.c index d2f813574..17cc78b38 100644 --- a/sm/gpgsm.c +++ b/sm/gpgsm.c @@ -862,9 +862,6 @@ main ( int argc, char **argv) gnupg_rl_initialize (); set_strusage (my_strusage); gcry_control (GCRYCTL_SUSPEND_SECMEM_WARN); - /* We don't need any locking in libgcrypt unless we use any kind of - threading. */ - gcry_control (GCRYCTL_DISABLE_INTERNAL_LOCKING); /* Please note that we may running SUID(ROOT), so be very CAREFUL when adding any stuff between here and the call to secmem_init() |