]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
Fix typos in kdb5_util master key command outputs
authorGreg Hudson <ghudson@mit.edu>
Mon, 21 Oct 2013 20:46:15 +0000 (16:46 -0400)
committerGreg Hudson <ghudson@mit.edu>
Fri, 25 Oct 2013 15:36:11 +0000 (11:36 -0400)
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.

ticket: 7730 (new)
target_version: 1.12
tags: pullup

src/kadmin/dbutil/kdb5_mkey.c

index 0fbbb78ed32061aeca33432a1c4d8a65e24f5098..18cfb1c167d4e2af76cdafd04bbb2a10aa1bdae7 100644 (file)
@@ -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);
     }