diff options
author | Ben Kibbey <bjk@luxsci.net> | 2016-08-09 00:40:03 +0200 |
---|---|---|
committer | Justus Winter <justus@g10code.com> | 2016-08-09 10:47:46 +0200 |
commit | 49829c29e541546084950b8a153067db371d101a (patch) | |
tree | 5d2ffb8d53187a25e1fe34e37d7d83ba8111e655 /g10/gpgv.c | |
parent | agent: SSH support improvement. (diff) | |
download | gnupg2-49829c29e541546084950b8a153067db371d101a.tar.xz gnupg2-49829c29e541546084950b8a153067db371d101a.zip |
Cleanup initialization of libgcrypt.
* common/init.c (init_common_subsystems): Initialize libgcrypt.
* dirmngr/Makefile.am (dirmngr_ldap): Link with libgcrypt.
--
Most other modules already call gcry_check_version() after
init_common_subsystems() so may as well move initialization of libgcrypt
to here. Also fixes a warning in the system log from gpgconf --homedir.
Signed-off-by: Ben Kibbey <bjk@luxsci.net>
Diffstat (limited to 'g10/gpgv.c')
-rw-r--r-- | g10/gpgv.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/g10/gpgv.c b/g10/gpgv.c index 59edbb978..729fcf843 100644 --- a/g10/gpgv.c +++ b/g10/gpgv.c @@ -155,11 +155,6 @@ main( int argc, char **argv ) i18n_init(); init_common_subsystems (&argc, &argv); - if (!gcry_check_version (NEED_LIBGCRYPT_VERSION) ) - { - log_fatal ( _("%s is too old (need %s, have %s)\n"), "libgcrypt", - NEED_LIBGCRYPT_VERSION, gcry_check_version (NULL) ); - } gcry_control (GCRYCTL_DISABLE_SECMEM, 0); gnupg_init_signals (0, NULL); |