diff options
author | Jameson Graef Rollins <jrollins@finestructure.net> | 2009-02-21 14:45:14 -0500 |
---|---|---|
committer | Jameson Graef Rollins <jrollins@finestructure.net> | 2009-02-21 14:45:14 -0500 |
commit | ad2ac2649dd86299a6904ae8ad0849d2c3410bdb (patch) | |
tree | 9f28472294b288edaecc59ec25ad52e032dc0b79 /src/share | |
parent | ab8a5011501a708c873122e34ea914a6dfab772e (diff) |
fix failure message in import_key
Diffstat (limited to 'src/share')
-rw-r--r-- | src/share/mh/import_key | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/share/mh/import_key b/src/share/mh/import_key index 7c11890..c545388 100644 --- a/src/share/mh/import_key +++ b/src/share/mh/import_key @@ -52,7 +52,7 @@ will be generated with the following user ID: EOF read -p "Are you sure you would like to create certificate? [Y/n] " OK; OK=${OK:-Y} if [ "${OK/y/Y}" != 'Y' ] ; then - failure "revoker not added." + failure "ssh key not imported." fi else log debug "importing key without prompting." |