diff options
| author | John Gilmore <gnu@toad.com> | 1995-02-28 09:57:53 +0000 |
|---|---|---|
| committer | John Gilmore <gnu@toad.com> | 1995-02-28 09:57:53 +0000 |
| commit | de237dcc17c8f87e8f94c96c94130be1e11adbf3 (patch) | |
| tree | 076a9f402a9b93bbb7bc3969d039c74bd925a935 /src | |
| parent | 81e578f8acdbe3e140f93d377b2d2d5d06ca2724 (diff) | |
| download | krb5-de237dcc17c8f87e8f94c96c94130be1e11adbf3.tar.gz krb5-de237dcc17c8f87e8f94c96c94130be1e11adbf3.tar.xz krb5-de237dcc17c8f87e8f94c96c94130be1e11adbf3.zip | |
* pop_init.c, pop_pass.c, pop_user.c, mh-6.8.patch: Avoid <krb5/...> includes
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5025 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
| -rw-r--r-- | src/appl/popper/ChangeLog | 5 | ||||
| -rw-r--r-- | src/appl/popper/mh-6.8.patch | 8 | ||||
| -rw-r--r-- | src/appl/popper/pop_init.c | 5 | ||||
| -rw-r--r-- | src/appl/popper/pop_pass.c | 6 | ||||
| -rw-r--r-- | src/appl/popper/pop_user.c | 6 |
5 files changed, 15 insertions, 15 deletions
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 + <krb5/...> 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 <krb5/krb5.h> -+ #include <krb5/ext-proto.h> -+ #include <krb5/los-proto.h> -+ #include <com_err.h> ++ #include "krb5.h" ++ /* #include <krb5/ext-proto.h> */ ++ /* #include <krb5/los-proto.h> */ ++ #include "com_err.h" + #include <ctype.h> + + 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 <krb5/krb5.h> -#include <krb5/ext-proto.h> -#include <com_err.h> +#include "krb5.h" +#include "com_err.h" #include <ctype.h> 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 <krb5/krb5.h> -#include <krb5/ext-proto.h> -#include <krb5/los-proto.h> -#include <com_err.h> +#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 <krb5/krb5.h> -#include <krb5/ext-proto.h> -#include <krb5/los-proto.h> -#include <com_err.h> +#include "krb5.h" +#include "com_err.h" extern krb5_principal ext_client; extern char *client_name; #endif /* KRB5 */ |
