Avoid <krb5/...> includes
authorJohn Gilmore <gnu@toad.com>
Tue, 28 Feb 1995 08:37:34 +0000 (08:37 +0000)
committerJohn Gilmore <gnu@toad.com>
Tue, 28 Feb 1995 08:37:34 +0000 (08:37 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5008 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/ccache/ChangeLog
src/lib/krb5/ccache/ccbase.c
src/lib/krb5/ccache/ccdefault.c
src/lib/krb5/ccache/file/ChangeLog
src/lib/krb5/ccache/file/fcc.h
src/lib/krb5/ccache/file/fcc_gennew.c
src/lib/krb5/ccache/file/fcc_maybe.c
src/lib/krb5/ccache/stdio/ChangeLog
src/lib/krb5/ccache/stdio/scc.h
src/lib/krb5/ccache/stdio/scc_gennew.c
src/lib/krb5/ccache/stdio/scc_maybe.c

index 07366413fd8fd5f225db25bf4c4465a102a2d9f4..69642720ddbd0aa0989a069fad6b61b82c498980 100644 (file)
@@ -1,3 +1,7 @@
+Tue Feb 28 00:35:33 1995  John Gilmore  (gnu at toad.com)
+
+       * ccbase.c, ccdefault.c:  Avoid <krb5/...> includes.
+
 Fri Jan 13 15:23:47 1995  Chris Provenzano (proven@mit.edu)
 
     * Added krb5_context to all krb5_routines 
index c9e295c84ab445caf643fc898aeb7f2e91e204d3..6bdd049ef4c370344aabead1d18fe5c61842b74d 100644 (file)
@@ -24,9 +24,7 @@
  * Registration functions for ccache.
  */
 
-
-#include <krb5/krb5.h>
-#include <krb5/ext-proto.h>
+#include "k5-int.h"
 
 extern krb5_cc_ops *krb5_cc_dfl_ops;
 struct krb5_cc_typelist
index 3400fa2dc0fb640e0ec52abc46f5fcf6c61752c4..7b7b0fb8d784c4692f24af301596e605292da3e1 100644 (file)
@@ -24,8 +24,7 @@
  * Find default credential cache
  */
 
-
-#include <krb5/krb5.h>
+#include "k5-int.h"
 
 krb5_error_code krb5_cc_default(context, ccache)
    krb5_context context;
index 4fa03c711480d804d99682d5f254cffc73e42d50..1d39f944df6e1c639261bd3a17c6fa4bf68fae23 100644 (file)
@@ -1,3 +1,7 @@
+Tue Feb 28 00:35:55 1995  John Gilmore  (gnu at toad.com)
+
+       * fcc.h, fcc_gennew.c, fcc_maybe.c:  Avoid <krb5/...> includes.
+
 Tue Feb 21 16:14:25 1995  Mark Eichin  (eichin@cygnus.com)
 
        * configure.in: check for HAVE_FLOCK, since we may need to use
index bd7f0f90ce30c75df3cd5d5bfa4a81ccd5fd606d..83686c56edabb7c4277732287b3601980a7c1b6a 100644 (file)
  * file-based credential cache routines.
  */
 
-
 #ifndef __KRB5_FILE_CCACHE__
 #define __KRB5_FILE_CCACHE__
 
-#include <krb5/krb5.h>
-#include <krb5/osconf.h>
-#include <krb5/ext-proto.h>
+#include "k5-int.h"
 #include "fcc-proto.h"
-#include <krb5/sysincl.h>
 #include <stdio.h>
 
 #define KRB5_OK 0
index 9b843ee8aecc4a041f0565de8fd9ef203de540fe..099e4002a1a44bbe5c28827678890889abfbde90 100644 (file)
@@ -26,7 +26,7 @@
 
 
 #include <errno.h>
-#include <krb5/osconf.h>
+#include "k5-int.h"
 #include "fcc.h"
 
 #ifdef KRB5_USE_INET
index 9e4314c47638925b11877b993257fb4623b43ffb..1c4c729042bbdad2abb58527de99e23fb360e870 100644 (file)
@@ -30,7 +30,7 @@
           
 #include "fcc.h"
 #include <errno.h>
-#include <krb5/osconf.h>
+#include "k5-int.h"
 
 int krb5_fcc_default_format = KRB5_FCC_DEFAULT_FVNO;
 
@@ -40,8 +40,6 @@ int krb5_fcc_default_format = KRB5_FCC_DEFAULT_FVNO;
  #error find some way to use net-byte-order file version numbers.
 #endif
 
-#include <krb5/libos.h>
-#include <krb5/los-proto.h>
 #include <stdio.h>
 
 #define LOCK_IT 0
index c2dc9945fec2dc7b327c38bf1ff621d1449d73a5..4c2c555f23c5bde4e6534a765d9e4aea5a61f102 100644 (file)
@@ -1,3 +1,7 @@
+Tue Feb 28 00:36:36 1995  John Gilmore  (gnu at toad.com)
+
+       * scc.h, scc_gennew.c, scc_maybe.c:  Avoid <krb5/...> includes.
+
 Fri Jan 27 00:49:36 1995  Chris Provenzano (proven@mit.edu)
 
        * Fix scc_read.c (krb5_scc_read_authdatum()) krb5_authdatatype
index 0a7ae0159c5209b966e7c2b50bf123872e5d49cf..6af8be93a006bdf4e14b7b5fe8d51e688540712f 100644 (file)
  * file-based credential cache routines.
  */
 
-
 #ifndef __KRB5_FILE_CCACHE__
 #define __KRB5_FILE_CCACHE__
 
-#include <krb5/krb5.h>
-#include <krb5/ext-proto.h>
+#include "k5-int.h"
 #include "scc-proto.h"
-#include <krb5/sysincl.h>
 #include <stdio.h>
 
 #define KRB5_OK 0
index 8851ddba764946120a53c390337990786a364a60..3a1c18168c98516e2fa5e8e3c7d582dc326336cc 100644 (file)
@@ -27,7 +27,7 @@
 
 #include "scc.h"
 
-#include <krb5/osconf.h>
+#include "k5-int.h"
 
 #ifdef KRB5_USE_INET
 #include <netinet/in.h>
index e337fe54ab6a7eb8d7fcc0ddd806d67b54701beb..f17c5c3853454b91f83a221d5bf4bb1f524fd5b0 100644 (file)
@@ -26,7 +26,7 @@
 
 
 #include "scc.h"
-#include <krb5/osconf.h>
+#include "k5-int.h"
 
 #ifdef KRB5_USE_INET
 #include <netinet/in.h>
@@ -34,9 +34,6 @@
  #error find some way to use net-byte-order file version numbers.
 #endif
 
-#include <krb5/libos.h>
-#include <krb5/los-proto.h>
-
 int krb5_scc_default_format = KRB5_SCC_DEFAULT_FVNO;
 
 krb5_error_code