From: John Gilmore Date: Tue, 28 Feb 1995 08:37:34 +0000 (+0000) Subject: Avoid includes X-Git-Tag: krb5-1.0-beta5~662 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d9e9a7acf4521197d3615c9f16fc526b5af16985;p=krb5.git Avoid includes git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5008 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/krb5/ccache/ChangeLog b/src/lib/krb5/ccache/ChangeLog index 07366413f..69642720d 100644 --- a/src/lib/krb5/ccache/ChangeLog +++ b/src/lib/krb5/ccache/ChangeLog @@ -1,3 +1,7 @@ +Tue Feb 28 00:35:33 1995 John Gilmore (gnu at toad.com) + + * ccbase.c, ccdefault.c: Avoid includes. + Fri Jan 13 15:23:47 1995 Chris Provenzano (proven@mit.edu) * Added krb5_context to all krb5_routines diff --git a/src/lib/krb5/ccache/ccbase.c b/src/lib/krb5/ccache/ccbase.c index c9e295c84..6bdd049ef 100644 --- a/src/lib/krb5/ccache/ccbase.c +++ b/src/lib/krb5/ccache/ccbase.c @@ -24,9 +24,7 @@ * Registration functions for ccache. */ - -#include -#include +#include "k5-int.h" extern krb5_cc_ops *krb5_cc_dfl_ops; struct krb5_cc_typelist diff --git a/src/lib/krb5/ccache/ccdefault.c b/src/lib/krb5/ccache/ccdefault.c index 3400fa2dc..7b7b0fb8d 100644 --- a/src/lib/krb5/ccache/ccdefault.c +++ b/src/lib/krb5/ccache/ccdefault.c @@ -24,8 +24,7 @@ * Find default credential cache */ - -#include +#include "k5-int.h" krb5_error_code krb5_cc_default(context, ccache) krb5_context context; diff --git a/src/lib/krb5/ccache/file/ChangeLog b/src/lib/krb5/ccache/file/ChangeLog index 4fa03c711..1d39f944d 100644 --- a/src/lib/krb5/ccache/file/ChangeLog +++ b/src/lib/krb5/ccache/file/ChangeLog @@ -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 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 diff --git a/src/lib/krb5/ccache/file/fcc.h b/src/lib/krb5/ccache/file/fcc.h index bd7f0f90c..83686c56e 100644 --- a/src/lib/krb5/ccache/file/fcc.h +++ b/src/lib/krb5/ccache/file/fcc.h @@ -25,15 +25,11 @@ * file-based credential cache routines. */ - #ifndef __KRB5_FILE_CCACHE__ #define __KRB5_FILE_CCACHE__ -#include -#include -#include +#include "k5-int.h" #include "fcc-proto.h" -#include #include #define KRB5_OK 0 diff --git a/src/lib/krb5/ccache/file/fcc_gennew.c b/src/lib/krb5/ccache/file/fcc_gennew.c index 9b843ee8a..099e4002a 100644 --- a/src/lib/krb5/ccache/file/fcc_gennew.c +++ b/src/lib/krb5/ccache/file/fcc_gennew.c @@ -26,7 +26,7 @@ #include -#include +#include "k5-int.h" #include "fcc.h" #ifdef KRB5_USE_INET diff --git a/src/lib/krb5/ccache/file/fcc_maybe.c b/src/lib/krb5/ccache/file/fcc_maybe.c index 9e4314c47..1c4c72904 100644 --- a/src/lib/krb5/ccache/file/fcc_maybe.c +++ b/src/lib/krb5/ccache/file/fcc_maybe.c @@ -30,7 +30,7 @@ #include "fcc.h" #include -#include +#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 -#include #include #define LOCK_IT 0 diff --git a/src/lib/krb5/ccache/stdio/ChangeLog b/src/lib/krb5/ccache/stdio/ChangeLog index c2dc9945f..4c2c555f2 100644 --- a/src/lib/krb5/ccache/stdio/ChangeLog +++ b/src/lib/krb5/ccache/stdio/ChangeLog @@ -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 includes. + Fri Jan 27 00:49:36 1995 Chris Provenzano (proven@mit.edu) * Fix scc_read.c (krb5_scc_read_authdatum()) krb5_authdatatype diff --git a/src/lib/krb5/ccache/stdio/scc.h b/src/lib/krb5/ccache/stdio/scc.h index 0a7ae0159..6af8be93a 100644 --- a/src/lib/krb5/ccache/stdio/scc.h +++ b/src/lib/krb5/ccache/stdio/scc.h @@ -25,14 +25,11 @@ * file-based credential cache routines. */ - #ifndef __KRB5_FILE_CCACHE__ #define __KRB5_FILE_CCACHE__ -#include -#include +#include "k5-int.h" #include "scc-proto.h" -#include #include #define KRB5_OK 0 diff --git a/src/lib/krb5/ccache/stdio/scc_gennew.c b/src/lib/krb5/ccache/stdio/scc_gennew.c index 8851ddba7..3a1c18168 100644 --- a/src/lib/krb5/ccache/stdio/scc_gennew.c +++ b/src/lib/krb5/ccache/stdio/scc_gennew.c @@ -27,7 +27,7 @@ #include "scc.h" -#include +#include "k5-int.h" #ifdef KRB5_USE_INET #include diff --git a/src/lib/krb5/ccache/stdio/scc_maybe.c b/src/lib/krb5/ccache/stdio/scc_maybe.c index e337fe54a..f17c5c385 100644 --- a/src/lib/krb5/ccache/stdio/scc_maybe.c +++ b/src/lib/krb5/ccache/stdio/scc_maybe.c @@ -26,7 +26,7 @@ #include "scc.h" -#include +#include "k5-int.h" #ifdef KRB5_USE_INET #include @@ -34,9 +34,6 @@ #error find some way to use net-byte-order file version numbers. #endif -#include -#include - int krb5_scc_default_format = KRB5_SCC_DEFAULT_FVNO; krb5_error_code