From: John Gilmore Date: Tue, 28 Feb 1995 09:57:53 +0000 (+0000) Subject: * pop_init.c, pop_pass.c, pop_user.c, mh-6.8.patch: Avoid includes X-Git-Tag: krb5-1.0-beta5~645 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=de237dcc17c8f87e8f94c96c94130be1e11adbf3;p=krb5.git * pop_init.c, pop_pass.c, pop_user.c, mh-6.8.patch: Avoid includes git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5025 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/appl/popper/ChangeLog b/src/appl/popper/ChangeLog index 27045dbd8..600405611 100644 --- a/src/appl/popper/ChangeLog +++ b/src/appl/popper/ChangeLog @@ -1,3 +1,8 @@ +Tue Feb 28 01:54:56 1995 John Gilmore (gnu at toad.com) + + * pop_init.c, pop_pass.c, pop_user.c, mh-6.8.patch: 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/appl/popper/mh-6.8.patch b/src/appl/popper/mh-6.8.patch index 10a4def6a..7ed7107db 100644 --- a/src/appl/popper/mh-6.8.patch +++ b/src/appl/popper/mh-6.8.patch @@ -10,10 +10,10 @@ + #error "You cannot define both KPOP and K5POP" + #endif + #ifdef K5POP -+ #include -+ #include -+ #include -+ #include ++ #include "krb5.h" ++ /* #include */ ++ /* #include */ ++ #include "com_err.h" + #include + + static krb5_error_code retval; diff --git a/src/appl/popper/pop_init.c b/src/appl/popper/pop_init.c index 821b98d14..e84647b8e 100644 --- a/src/appl/popper/pop_init.c +++ b/src/appl/popper/pop_init.c @@ -22,9 +22,8 @@ AUTH_DAT kdata; #endif /* KRB4 */ #ifdef KRB5 -#include -#include -#include +#include "krb5.h" +#include "com_err.h" #include krb5_principal ext_client; krb5_context pop_context; diff --git a/src/appl/popper/pop_pass.c b/src/appl/popper/pop_pass.c index f69700359..b4db2deae 100644 --- a/src/appl/popper/pop_pass.c +++ b/src/appl/popper/pop_pass.c @@ -28,10 +28,8 @@ static char copyright[] = "Copyright (c) 1990 Regents of the University of Calif extern AUTH_DAT kdata; #endif /* KRB4 */ #ifdef KRB5 -#include -#include -#include -#include +#include "krb5.h" +#include "com_err.h" extern krb5_principal ext_client; extern krb5_context pop_context; extern char *client_name; diff --git a/src/appl/popper/pop_user.c b/src/appl/popper/pop_user.c index fbadd23cc..38bbd243c 100644 --- a/src/appl/popper/pop_user.c +++ b/src/appl/popper/pop_user.c @@ -27,10 +27,8 @@ static char copyright[] = "Copyright (c) 1990 Regents of the University of Calif extern AUTH_DAT kdata; #endif /* KRB4 */ #ifdef KRB5 -#include -#include -#include -#include +#include "krb5.h" +#include "com_err.h" extern krb5_principal ext_client; extern char *client_name; #endif /* KRB5 */