* dumpv4.c: Pass C_Block * to des_read_password() as per prototype
authorEzra Peisach <epeisach@mit.edu>
Fri, 8 Jun 2001 20:22:46 +0000 (20:22 +0000)
committerEzra Peisach <epeisach@mit.edu>
Fri, 8 Jun 2001 20:22:46 +0000 (20:22 +0000)
* loadv4.c: Include k5-int.h before des.h for des_read_password
prototype. Pass C_Block * to des_read_password() as per prototype.

* kdb5_util.h: Add prototype for usage.

* kdb5_create.c, kdb5_destroy.c, kdb5_stash.c: Include kdb5_util.h
for usage() prototype.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13317 dc483132-0cff-0310-8789-dd5450dbe970

src/kadmin/dbutil/ChangeLog
src/kadmin/dbutil/dumpv4.c
src/kadmin/dbutil/kdb5_create.c
src/kadmin/dbutil/kdb5_destroy.c
src/kadmin/dbutil/kdb5_stash.c
src/kadmin/dbutil/kdb5_util.h
src/kadmin/dbutil/loadv4.c

index 10e2df034301811414fe992af0eded24fc01ab90..c620f20ae5cefe3ed2bd32ed132e2968ee23811a 100644 (file)
@@ -1,3 +1,15 @@
+2001-06-08  Ezra Peisach  <epeisach@mit.edu>
+
+       * dumpv4.c: Pass C_Block * to des_read_password() as per prototype.
+
+       * loadv4.c: Include k5-int.h before des.h for des_read_password
+       prototype. Pass C_Block * to des_read_password() as per prototype.
+
+       * kdb5_util.h: Add prototype for usage.
+
+       * kdb5_create.c, kdb5_destroy.c, kdb5_stash.c: Include kdb5_util.h
+       for usage() prototype.
+
 2001-06-04  Ezra Peisach  <epeisach@mit.edu>
 
        * kadm5_create.c: Add prototype for static
index 0afbadae91ff7327eaae66c1dfa541a96ade13a8..461da833d215d99a9e324d2f88bb1a21825c058c 100644 (file)
@@ -112,7 +112,7 @@ v4init(arg, manual)
        }
     }
     if (!ok) {
-       des_read_password(arg->v4_master_key, "V4 Kerberos master key: ", 1);
+       des_read_password(&arg->v4_master_key, "V4 Kerberos master key: ", 1);
        printf("\n");
     }
     arg->master_key_version = 1;
index f10f6a4f873092484a84ad3ec8935d2dd0b9befa..02100db5b39f929d8fcafab1556a3e3570f45387 100644 (file)
@@ -57,6 +57,7 @@
 #include <k5-int.h>
 #include <kadm5/admin.h>
 #include <kadm5/adb.h>
+#include "kdb5_util.h"
 
 enum ap_op {
     NULL_KEY,                          /* setup null keys */
index ea2fb7142a664073ef71116f3fcd658c77d75b38..62d65ed4985d6fb2e12460bc0ff9d813788f7175 100644 (file)
@@ -34,6 +34,7 @@
 #include "com_err.h"
 #include <kadm5/admin.h>
 #include <kadm5/adb.h>
+#include "kdb5_util.h"
 
 extern int errno;
 extern int exit_status;
index 46a2c6192102916dcdde24cfd584748b741a2f28..0c6aed5ca423011bdee384496b35aefd96ab6bdc 100644 (file)
@@ -57,6 +57,7 @@
 #include "com_err.h"
 #include <kadm5/admin.h>
 #include <stdio.h>
+#include "kdb5_util.h"
 
 extern int errno;
 
index 52175e56fe600ad0c5220078b112fb96f59a3a1a..8c72754d14f9036efa5873e606e2fbda72a9e4a5 100644 (file)
@@ -81,3 +81,6 @@ extern void kdb5_stash PROTOTYPE((int argc, char **argv));
 extern void update_ok_file PROTOTYPE((char *file_name));
 
 extern int kadm5_create PROTOTYPE((kadm5_config_params *params));
+
+void usage PROTOTYPE((void));
+
index d4de7572c092e5b98017573262eb886bd217ee57..a93f7aadff7956d0e555bb18d0d17686a8902489 100644 (file)
@@ -56,6 +56,9 @@
 
 #ifdef KRB5_KRB4_COMPAT
 
+#include "k5-int.h"
+#include "com_err.h"
+
 #include <des.h>
 #include <krb.h>
 #include <krb_db.h>
@@ -67,8 +70,6 @@ static Key_schedule master_key_schedule;
 
 static char *v4_mkeyfile = "/.k";
 
-#include "k5-int.h"
-#include "com_err.h"
 #include <kadm5/admin.h>
 #include <stdio.h>
 /* Define to make certain blocks private */
@@ -463,7 +464,7 @@ char *dumpfile;
        }
     }
     if (!ok) {
-       des_read_password(master_key, "V4 Kerberos master key: ", 0);
+       des_read_password(&master_key, "V4 Kerberos master key: ", 0);
        printf("\n");
     }
     key_sched(master_key, master_key_schedule);