krb5 commit [krb5-1.10]: Fix typos in kdb5_util master key command outputs

Tom Yu tlyu at MIT.EDU
Wed Oct 30 17:59:37 EDT 2013


https://github.com/krb5/krb5/commit/5439c61df79b0fefe614e256dfba0c55ec879878
commit 5439c61df79b0fefe614e256dfba0c55ec879878
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: 7744 (new)
    version_fixed: 1.10.7
    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 3952994..f8d1934 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);
             }
         }
@@ -1231,10 +1231,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