Fixed a bunch of typos
authorMitchell Berger <mitchb@mit.edu>
Wed, 20 Jun 2001 05:00:19 +0000 (05:00 +0000)
committerMitchell Berger <mitchb@mit.edu>
Wed, 20 Jun 2001 05:00:19 +0000 (05:00 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13398 dc483132-0cff-0310-8789-dd5450dbe970

src/kadmin/dbutil/ChangeLog
src/kadmin/dbutil/dump.c
src/kadmin/dbutil/kdb5_create.c
src/kadmin/dbutil/ovload.c

index 39f2e63d90c5aa5099e8d301f59bc3074b5bcf46..b0f8a5869236f187e7e1695071595554c4673696 100644 (file)
@@ -1,3 +1,7 @@
+2001-06-20  Mitchell Berger  <mitchb@mit.edu>
+
+       * kdb5_create.c (kdb5_create): Fixed typo in com_err message.
+
 2001-06-18  Ezra Peisach  <epeisach@mit.edu>
 
        * dump.c (name_matches): Cleanup warning of assignments in
index dfdfb7dee15234838577003239a839623027cbaa..fbc88372212f44c6ce7f891cf8d55f400fedebde 100644 (file)
@@ -1,7 +1,7 @@
 /*
- * admin/edit/dump.c
+ * kadmin/dbutil/dump.c
  *
- * Copyright 1990,1991 by the Massachusetts Institute of Technology.
+ * Copyright 1990,1991,2001 by the Massachusetts Institute of Technology.
  * All Rights Reserved.
  *
  * Export of this software from the United States of America may
@@ -712,7 +712,7 @@ dump_k5beta6_iterator_ext(ptr, entry, kadm)
         *      n_key_data*[ver kvno ver*(type length <contents>)]
         *      <e_data>
         * Fields which are not encapsulated by angle-brackets are to appear
-        * verbatim.  Bracketed fields absence is indicated by a -1 in its
+        * verbatim.  A bracketed field's absence is indicated by a -1 in its
         * place
         */
 
@@ -1746,7 +1746,7 @@ process_k5beta6_record(fname, kcontext, filep, verbose, linenop, pol_db)
                 * and were not supported in the previous version.
                 * But it's a pain to implement that here, and doing
                 * it at dump time has almost as good an effect, so
-                * that's what I did.  [krb5-admin/89/
+                * that's what I did.  [krb5-admin/89]
                 */
                if (!error && dbentry.n_tl_data) {
                    for (tl = dbentry.tl_data; tl; tl = tl->tl_data_next) {
@@ -1942,7 +1942,7 @@ process_k5beta7_policy(fname, kcontext, filep, verbose, linenop, pol_db)
 }
 
 /*
- * process_k5beta7_record()    - Handle a dump record in krb5b6 format.
+ * process_k5beta7_record()    - Handle a dump record in krb5b7 format.
  *
  * Returns -1 for end of file, 0 for success and 1 for failure.
  */
index 02100db5b39f929d8fcafab1556a3e3570f45387..10972ccc8b748fc4e657665307dccb64501fc306 100644 (file)
@@ -1,7 +1,7 @@
 /*
- * admin/create/kdb5_create.c
+ * kadmin/dbutil/kdb5_create.c
  *
- * Copyright 1990,1991 by the Massachusetts Institute of Technology.
+ * Copyright 1990,1991,2001 by the Massachusetts Institute of Technology.
  * All Rights Reserved.
  *
  * Export of this software from the United States of America may
@@ -238,7 +238,7 @@ master key name '%s'\n",
     pwd.length = strlen(mkey_password);
     retval = krb5_principal2salt(util_context, master_princ, &master_salt);
     if (retval) {
-       com_err(argv[0], retval, "while calculated master key salt");
+       com_err(argv[0], retval, "while calculating master key salt");
        exit_status++; return;
     }
 
index e8075f114d988128447ae72d3e71961db76c3bc4..350dfb6941d334cc4244a1d5fd4e3e49ee9f15a3 100644 (file)
@@ -80,7 +80,7 @@ done:
  * Purpose: parse principal line in db dump file
  *
  * Arguments:
- *     <return value>  0 on sucsess, error code on failure
+ *     <return value>  0 on success, error code on failure
  *
  * Requires:
  *     principal database to be opened.