summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/include/krb5/ChangeLog7
-rw-r--r--src/include/krb5/kdb.h1
2 files changed, 8 insertions, 0 deletions
diff --git a/src/include/krb5/ChangeLog b/src/include/krb5/ChangeLog
index c66d0e5e62..04832224d1 100644
--- a/src/include/krb5/ChangeLog
+++ b/src/include/krb5/ChangeLog
@@ -1,5 +1,12 @@
Mon Oct 3 18:45:55 1994 Theodore Y. Ts'o (tytso@dcl)
+ * kdb.h: Add magic number to _krb5_db_entry. (This among other
+ things will cause a backwards incompatible change to the database
+ format.) The previous magic number changes also force a database
+ format change; we will eventually need to completely redo how we
+ encode the database format, so that it isn't structure layout
+ dependent!
+
* Makefile.in: Fix install to obey ${DESTDIR}, copy conf.h and
osconf.h from build tree.
diff --git a/src/include/krb5/kdb.h b/src/include/krb5/kdb.h
index f774bf9747..330b0a4186 100644
--- a/src/include/krb5/kdb.h
+++ b/src/include/krb5/kdb.h
@@ -44,6 +44,7 @@ typedef struct _krb5_encrypted_keyblock {
* database version number in libkdb.a
*/
typedef struct _krb5_db_entry {
+ krb5_magic magic;
krb5_principal principal;
krb5_encrypted_keyblock key;
krb5_kvno kvno;