diff options
author | Werner Koch <[email protected]> | 2017-02-13 12:09:51 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2017-02-13 19:13:05 +0000 |
commit | 810adfd47801fc01e45fb71af9f05c91f7890cdb (patch) | |
tree | 3d8940d791f64eb5cb1cf1e6f2c6c2e00f8ca8ad | |
parent | g13: Fix build on macOS. (diff) | |
download | gnupg-810adfd47801fc01e45fb71af9f05c91f7890cdb.tar.gz gnupg-810adfd47801fc01e45fb71af9f05c91f7890cdb.zip |
gpg: Print a warning if no command has been given.
* g10/gpg.c (main): Print in the default case.
--
GnuPG-bug-id: 2943
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to '')
-rw-r--r-- | g10/gpg.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -4894,8 +4894,12 @@ main (int argc, char **argv) #endif /*USE_TOFU*/ break; - case aListPackets: default: + if (!opt.quiet) + log_info (_("WARNING: no command supplied." + " Trying to guess what you mean ...\n")); + /*FALLTHU*/ + case aListPackets: if( argc > 1 ) wrong_args("[filename]"); /* Issue some output for the unix newbie */ |