krb5 commit [krb5-1.12]: Fix typos in kdb5_util master key command outputs
Tom Yu
tlyu at MIT.EDU
Fri Oct 25 14:54:28 EDT 2013
https://github.com/krb5/krb5/commit/00dd6cb24a1e35475b55587214359fd9f4718e80
commit 00dd6cb24a1e35475b55587214359fd9f4718e80
Author: Greg Hudson <ghudson at mit.edu>
Date: Mon Oct 21 16:46:15 2013 -0400
Fix typos in kdb5_util master key command outputs
kdb5_util list_mkeys was beginning lines with "KNVO" instead of
"KVNO". kdb5_util purge_mkeys was displaying "follwing" instead of
"following" for both dry-run and normal cases.
(cherry picked from commit 7fee58ccadf1b61eec9a8c62f47dac43986e2ad1)
ticket: 7730
version_fixed: 1.12
status: resolved
src/kadmin/dbutil/kdb5_mkey.c | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/kadmin/dbutil/kdb5_mkey.c b/src/kadmin/dbutil/kdb5_mkey.c
index 0fbbb78..18cfb1c 100644
--- a/src/kadmin/dbutil/kdb5_mkey.c
+++ b/src/kadmin/dbutil/kdb5_mkey.c
@@ -664,16 +664,16 @@ kdb5_list_mkeys(int argc, char *argv[])
if (cur_kb_node->kvno == act_kvno) {
/* * indicates kvno is currently active */
retval = asprintf(&output_str,
- _("KNVO: %d, Enctype: %s, Active on: %s *\n"),
+ _("KVNO: %d, Enctype: %s, Active on: %s *\n"),
cur_kb_node->kvno, enctype, strdate(act_time));
} else {
if (act_time != -1) {
retval = asprintf(&output_str,
- _("KNVO: %d, Enctype: %s, Active on: %s\n"),
+ _("KVNO: %d, Enctype: %s, Active on: %s\n"),
cur_kb_node->kvno, enctype, strdate(act_time));
} else {
retval = asprintf(&output_str,
- _("KNVO: %d, Enctype: %s, No activate time "
+ _("KVNO: %d, Enctype: %s, No activate time "
"set\n"), cur_kb_node->kvno, enctype);
}
}
@@ -1247,10 +1247,10 @@ kdb5_purge_mkeys(int argc, char *argv[])
* princ entries
*/
if (dry_run) {
- printf(_("Would purge the follwing master key(s) from %s:\n"),
+ printf(_("Would purge the following master key(s) from %s:\n"),
mkey_fullname);
} else {
- printf(_("Purging the follwing master key(s) from %s:\n"),
+ printf(_("Purging the following master key(s) from %s:\n"),
mkey_fullname);
}
More information about the cvs-krb5
mailing list