aboutsummaryrefslogtreecommitdiffstats
path: root/g10/delkey.c
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2004-10-28 03:57:30 +0000
committerDavid Shaw <[email protected]>2004-10-28 03:57:30 +0000
commitf15e944b9872468a574ca8f9cb5849a69e6cdb21 (patch)
tree6ba44cca847075c01f1374ddec6c21de470a2549 /g10/delkey.c
parent* keylist.c (status_one_subpacket): New. Send the subpacket data to the (diff)
downloadgnupg-f15e944b9872468a574ca8f9cb5849a69e6cdb21.tar.gz
gnupg-f15e944b9872468a574ca8f9cb5849a69e6cdb21.zip
* card-util.c, delkey.c, keygen.c, plaintext.c, keyedit.c, passphrase.c,
revoke.c: Collapse the two different "can't do that in batch mode" strings into one.
Diffstat (limited to '')
-rw-r--r--g10/delkey.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/delkey.c b/g10/delkey.c
index efb9a50d4..eed4d3340 100644
--- a/g10/delkey.c
+++ b/g10/delkey.c
@@ -117,14 +117,14 @@ do_delete_key( const char *username, int secret, int *r_sec_avail )
okay++;
else if( opt.batch && secret )
{
- log_error(_("can't do that in batchmode\n"));
+ log_error(_("can't do this in batch mode\n"));
log_info (_("(unless you specify the key by fingerprint)\n"));
}
else if( opt.batch && opt.answer_yes )
okay++;
else if( opt.batch )
{
- log_error(_("can't do that in batchmode without \"--yes\"\n"));
+ log_error(_("can't do this in batch mode without \"--yes\"\n"));
log_info (_("(unless you specify the key by fingerprint)\n"));
}
else {