summaryrefslogtreecommitdiffstats
path: root/g13
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2012-03-27 12:35:13 +0200
committerWerner Koch <wk@gnupg.org>2012-03-27 12:38:49 +0200
commitde01c51ecb3918f427aa76281351749c8ad07ed6 (patch)
tree944740e90c45a6bea9a0c539b5dab77d0142ec03 /g13
parentUpdate the maintenance instructions. (diff)
downloadgnupg2-de01c51ecb3918f427aa76281351749c8ad07ed6.tar.xz
gnupg2-de01c51ecb3918f427aa76281351749c8ad07ed6.zip
Print warning for arguments not considered an option.
GnuPG requires that options are given before other arguments. This can sometimes be confusing. We now print a warning if we found an argument looking alike a long option without being preceded by the stop option. This is bug#1343. * common/argparse.h (ARGPARSE_FLAG_STOP_SEEN): New. * common/argparse.c (arg_parse): Set new flag. * g10/gpg.c (main): Print the warning. * agent/gpg-agent.c (main): Ditto. * dirmngr/dirmngr.c (main): Ditto. * g13/g13.c (main): Ditto. * scd/scdaemon.c (main): Ditto. * sm/gpgsm.c (main): Ditto. * tools/gpg-connect-agent.c (main): Ditto. * tools/gpgconf.c (main): Ditto.
Diffstat (limited to 'g13')
-rw-r--r--g13/g13.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/g13/g13.c b/g13/g13.c
index 6fc83b52c..ee72f3385 100644
--- a/g13/g13.c
+++ b/g13/g13.c
@@ -599,6 +599,17 @@ main ( int argc, char **argv)
if (may_coredump && !opt.quiet)
log_info (_("WARNING: program may create a core file!\n"));
+ /* Print a warning if an argument looks like an option. */
+ if (!opt.quiet && !(pargs.flags & ARGPARSE_FLAG_STOP_SEEN))
+ {
+ int i;
+
+ for (i=0; i < argc; i++)
+ if (argv[i][0] == '-' && argv[i][1] == '-')
+ log_info (_("NOTE: `%s' is not considered an option\n"), argv[i]);
+ }
+
+
if (logfile)
{
log_set_file (logfile);