diff options
author | Werner Koch <[email protected]> | 2012-03-27 10:35:13 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2012-03-27 10:38:49 +0000 |
commit | de01c51ecb3918f427aa76281351749c8ad07ed6 (patch) | |
tree | 944740e90c45a6bea9a0c539b5dab77d0142ec03 /sm | |
parent | Update the maintenance instructions. (diff) | |
download | gnupg-de01c51ecb3918f427aa76281351749c8ad07ed6.tar.gz gnupg-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 'sm')
-rw-r--r-- | sm/gpgsm.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sm/gpgsm.c b/sm/gpgsm.c index b2d1d2f67..d8ddbee53 100644 --- a/sm/gpgsm.c +++ b/sm/gpgsm.c @@ -1473,6 +1473,16 @@ main ( int argc, char **argv) log_printf ("\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]); + } + /*FIXME if (opt.batch) */ /* tty_batchmode (1); */ |