diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/gpg-check-pattern.c | 2 | ||||
-rw-r--r-- | tools/gpg-connect-agent.c | 2 | ||||
-rw-r--r-- | tools/gpgconf.c | 2 | ||||
-rw-r--r-- | tools/symcryptrun.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/tools/gpg-check-pattern.c b/tools/gpg-check-pattern.c index 8d152631d..42a6c62f0 100644 --- a/tools/gpg-check-pattern.c +++ b/tools/gpg-check-pattern.c @@ -169,7 +169,7 @@ main (int argc, char **argv ) /* Make sure that our subsystems are ready. */ i18n_init (); - init_common_subsystems (); + init_common_subsystems (&argc, &argv); /* We need Libgcrypt for hashing. */ if (!gcry_check_version (NEED_LIBGCRYPT_VERSION) ) diff --git a/tools/gpg-connect-agent.c b/tools/gpg-connect-agent.c index 86ef2a642..2bd5f8549 100644 --- a/tools/gpg-connect-agent.c +++ b/tools/gpg-connect-agent.c @@ -1158,7 +1158,7 @@ main (int argc, char **argv) /* Make sure that our subsystems are ready. */ i18n_init(); - init_common_subsystems (); + init_common_subsystems (&argc, &argv); assuan_set_gpg_err_source (0); diff --git a/tools/gpgconf.c b/tools/gpgconf.c index 76e44670a..31f88bb3d 100644 --- a/tools/gpgconf.c +++ b/tools/gpgconf.c @@ -152,7 +152,7 @@ main (int argc, char **argv) /* Make sure that our subsystems are ready. */ i18n_init(); - init_common_subsystems (); + init_common_subsystems (&argc, &argv); /* Parse the command line. */ pargs.argc = &argc; diff --git a/tools/symcryptrun.c b/tools/symcryptrun.c index 7eeff97a1..2ef682210 100644 --- a/tools/symcryptrun.c +++ b/tools/symcryptrun.c @@ -884,7 +884,7 @@ main (int argc, char **argv) /* Make sure that our subsystems are ready. */ i18n_init(); - init_common_subsystems (); + init_common_subsystems (&argc, &argv); opt.homedir = default_homedir (); |