diff options
author | Werner Koch <[email protected]> | 2015-01-28 18:57:22 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2015-01-28 18:57:22 +0000 |
commit | 0c2bfd9d5a49a6134188f8f7820f6ccdebd9f181 (patch) | |
tree | 15c64db121e54ac1fa076be8ced08ee1ceffcf70 /dirmngr/dirmngr-client.c | |
parent | gpg: Allow predefined names as answer to the keygen.algo prompt. (diff) | |
download | gnupg-0c2bfd9d5a49a6134188f8f7820f6ccdebd9f181.tar.gz gnupg-0c2bfd9d5a49a6134188f8f7820f6ccdebd9f181.zip |
Add a hook to be called right after main.
* common/init.c (early_system_init): New stub function.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to '')
-rw-r--r-- | dirmngr/dirmngr-client.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dirmngr/dirmngr-client.c b/dirmngr/dirmngr-client.c index 0e627642d..770e941a4 100644 --- a/dirmngr/dirmngr-client.c +++ b/dirmngr/dirmngr-client.c @@ -40,6 +40,7 @@ #include "i18n.h" #include "util.h" +#include "init.h" /* Constants for the options. */ @@ -180,6 +181,7 @@ main (int argc, char **argv ) int cmd_loadcrl = 0; int cmd_squid_mode = 0; + early_system_init (); set_strusage (my_strusage); log_set_prefix ("dirmngr-client", JNLIB_LOG_WITH_PREFIX); |