summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChris Provenzano <proven@mit.edu>1995-03-10 17:18:02 +0000
committerChris Provenzano <proven@mit.edu>1995-03-10 17:18:02 +0000
commit92740eac535838dff1fb3095f63a303b1205f789 (patch)
tree3296ec815c3024d125a5d0e40fe220979c5c483c /src
parent8f926e950029287017aae9fab9f11ba5ae9bddd4 (diff)
downloadkrb5-92740eac535838dff1fb3095f63a303b1205f789.tar.gz
krb5-92740eac535838dff1fb3095f63a303b1205f789.tar.xz
krb5-92740eac535838dff1fb3095f63a303b1205f789.zip
* krb5.h Added empty structure declaration of krb5_auth_context
* k5-int.h Moved #include "adm_defs.h" to krb5.h git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5096 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/include/ChangeLog7
-rw-r--r--src/include/k5-int.h1
-rw-r--r--src/include/krb5.h5
3 files changed, 12 insertions, 1 deletions
diff --git a/src/include/ChangeLog b/src/include/ChangeLog
index 65a643f8b..6846e7f2c 100644
--- a/src/include/ChangeLog
+++ b/src/include/ChangeLog
@@ -1,3 +1,10 @@
+
+Fri Mar 10 10:18:50 1995 Chris Provenzano (proven@mit.edu)
+
+ * krb5.h Added empty structure declaration of krb5_auth_context.
+
+ * k5-int.h Moved #include "adm_defs.h" to krb5.h
+
Thu Mar 2 23:24:00 1995 John Gilmore (gnu at toad.com)
Make include files begin to work on the Macintosh.
diff --git a/src/include/k5-int.h b/src/include/k5-int.h
index 25556d789..2a5f13fa9 100644
--- a/src/include/k5-int.h
+++ b/src/include/k5-int.h
@@ -12,7 +12,6 @@
/* krb5/krb5.h includes many other krb5/*.h files too. The ones that it
doesn't include, we include below. */
-#include "adm_defs.h"
#include "asn1.h"
#include "copyright.h"
#include "dbm.h"
diff --git a/src/include/krb5.h b/src/include/krb5.h
index 865140201..04fa06d34 100644
--- a/src/include/krb5.h
+++ b/src/include/krb5.h
@@ -52,6 +52,9 @@ typedef struct _krb5_context {
void * os_context;
} * krb5_context;
+struct _krb5_auth_context;
+typedef struct _krb5_auth_context krb5_auth_context;
+
#include "encryption.h"
#include "fieldbits.h"
#include "errors.h"
@@ -334,4 +337,6 @@ typedef struct _krb5_pwd_data {
#define KRB5_RECVAUTH_SKIP_VERSION 0x0001
#define KRB5_RECVAUTH_BADAUTHVERS 0x0002
+#include "adm_defs.h"
+
#endif /* KRB5_GENERAL__ */