diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2009-02-19 04:55:46 -0500 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2009-02-19 04:55:46 -0500 |
commit | 9b66b19a701fa74d90d5f3b3325e2c8fdd173549 (patch) | |
tree | 102a7217487a53b055113bd95c1a5fce98d2195f /src/share/ma/remove_certifier | |
parent | 16161f54955fda7bf71e3d8bc9ffc192b98f5a4f (diff) |
do not show uid validity for gpg authentication core, since the core has no ultimate ownertrust
Diffstat (limited to 'src/share/ma/remove_certifier')
-rw-r--r-- | src/share/ma/remove_certifier | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/share/ma/remove_certifier b/src/share/ma/remove_certifier index 95f6dff..a9a1451 100644 --- a/src/share/ma/remove_certifier +++ b/src/share/ma/remove_certifier @@ -27,7 +27,7 @@ fi gpg_core --list-key --fingerprint "0x${keyID}!" || failure if [ "$PROMPT" = "true" ] ; then - read -p "Really remove above listed identity certifier? (Y/n) " OK; OK=${OK:-Y} + read -p "Really remove the identity certifier above? (Y/n) " OK; OK=${OK:-Y} if [ "${OK/y/Y}" != 'Y' ] ; then failure "Identity certifier not removed." fi |