summaryrefslogtreecommitdiffstats
path: root/src/kadmin
diff options
context:
space:
mode:
authorMitchell Berger <mitchb@mit.edu>2001-06-20 05:00:19 +0000
committerMitchell Berger <mitchb@mit.edu>2001-06-20 05:00:19 +0000
commitbca864ef3407b7d0485aca800d8daebe61cddffc (patch)
tree4d6f0b2ea2f0b4b74f66dcfeae46e42a4ecf38aa /src/kadmin
parent308665f3840b56b47e347dad9ab9400aa123e089 (diff)
downloadkrb5-bca864ef3407b7d0485aca800d8daebe61cddffc.tar.gz
krb5-bca864ef3407b7d0485aca800d8daebe61cddffc.tar.xz
krb5-bca864ef3407b7d0485aca800d8daebe61cddffc.zip
Fixed a bunch of typos
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13398 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/kadmin')
-rw-r--r--src/kadmin/dbutil/ChangeLog4
-rw-r--r--src/kadmin/dbutil/dump.c10
-rw-r--r--src/kadmin/dbutil/kdb5_create.c6
-rw-r--r--src/kadmin/dbutil/ovload.c2
4 files changed, 13 insertions, 9 deletions
diff --git a/src/kadmin/dbutil/ChangeLog b/src/kadmin/dbutil/ChangeLog
index 39f2e63d9..b0f8a5869 100644
--- a/src/kadmin/dbutil/ChangeLog
+++ b/src/kadmin/dbutil/ChangeLog
@@ -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
diff --git a/src/kadmin/dbutil/dump.c b/src/kadmin/dbutil/dump.c
index dfdfb7dee..fbc883722 100644
--- a/src/kadmin/dbutil/dump.c
+++ b/src/kadmin/dbutil/dump.c
@@ -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.
*/
diff --git a/src/kadmin/dbutil/kdb5_create.c b/src/kadmin/dbutil/kdb5_create.c
index 02100db5b..10972ccc8 100644
--- a/src/kadmin/dbutil/kdb5_create.c
+++ b/src/kadmin/dbutil/kdb5_create.c
@@ -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;
}
diff --git a/src/kadmin/dbutil/ovload.c b/src/kadmin/dbutil/ovload.c
index e8075f114..350dfb694 100644
--- a/src/kadmin/dbutil/ovload.c
+++ b/src/kadmin/dbutil/ovload.c
@@ -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.