diff options
author | David Shaw <[email protected]> | 2004-10-10 15:27:14 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2004-10-10 15:27:14 +0000 |
commit | f3687f6b6c9c8d3e28be3cc9ab7967d108ff71bc (patch) | |
tree | 39d7fcfd0589852bf0adda9b59691163ea8eca4d /g10/pkclist.c | |
parent | * keygen.c (ask_key_flags): New. (ask_algo): Call it here in --expert mode (diff) | |
download | gnupg-f3687f6b6c9c8d3e28be3cc9ab7967d108ff71bc.tar.gz gnupg-f3687f6b6c9c8d3e28be3cc9ab7967d108ff71bc.zip |
* card-util.c, keyedit.c, openfile.c, pkclist.c, delkey.c, keygen.c,
photoid.c, revoke.c: Some yes-or-no prompts end in "(y/n)". Some don't.
Consistently use y/n everywhere.
Diffstat (limited to 'g10/pkclist.c')
-rw-r--r-- | g10/pkclist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/pkclist.c b/g10/pkclist.c index e8e0b86ae..8d869cd61 100644 --- a/g10/pkclist.c +++ b/g10/pkclist.c @@ -294,7 +294,7 @@ do_edit_ownertrust (PKT_public_key *pk, int mode, if (trust == TRUST_ULTIMATE && !cpr_get_answer_is_yes ("edit_ownertrust.set_ultimate.okay", _("Do you really want to set this key" - " to ultimate trust? "))) + " to ultimate trust? (y/N) "))) ; /* no */ else { @@ -441,7 +441,7 @@ do_we_trust_pre( PKT_public_key *pk, unsigned int trustlevel ) tty_printf("\n"); if( cpr_get_answer_is_yes("untrusted_key.override", - _("Use this key anyway? ")) ) + _("Use this key anyway? (y/N) ")) ) rc = 1; /* Hmmm: Should we set a flag to tell the user about |