mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
gpg: Print a note if no args are given to --delete-key
-- It is a bit surprising that nothing happens if no key is specified to --delete-key et al. Although this is common Unix behaviour the use might have expected that it behaves like --export and deletes all keys. Sure we don't do the latter, so a short notice will help. GnuPG-bug-id: 4959 Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
b451c4f5ea
commit
5cb0156504
@ -4437,6 +4437,9 @@ main (int argc, char **argv)
|
||||
case aDeleteSecretKeys:
|
||||
case aDeleteSecretAndPublicKeys:
|
||||
sl = NULL;
|
||||
/* Print a note if the user did not specify any key. */
|
||||
if (!argc && !opt.quiet)
|
||||
log_info (_("Note: %s\n"), gpg_strerror (GPG_ERR_NO_KEY));
|
||||
/* I'm adding these in reverse order as add_to_strlist2
|
||||
reverses them again, and it's easier to understand in the
|
||||
proper order :) */
|
||||
|
Loading…
x
Reference in New Issue
Block a user