diff options
author | Ezra Peisach <epeisach@mit.edu> | 2001-06-27 11:21:18 +0000 |
---|---|---|
committer | Ezra Peisach <epeisach@mit.edu> | 2001-06-27 11:21:18 +0000 |
commit | c8e13d295727448b483a0b5f0f809af8a52ccbfe (patch) | |
tree | 13b1f5ca7b56bb01d4d65529b911ee9e93dc38a5 /src/lib | |
parent | 40f9905c7f38f36b5b55eb30d7f7f46bf9f7e79f (diff) | |
download | krb5-c8e13d295727448b483a0b5f0f809af8a52ccbfe.tar.gz krb5-c8e13d295727448b483a0b5f0f809af8a52ccbfe.tar.xz krb5-c8e13d295727448b483a0b5f0f809af8a52ccbfe.zip |
* compat_recv.c: Flush out prototype for static krb_v4_recvauth
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13518 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/krb5util/ChangeLog | 4 | ||||
-rw-r--r-- | src/lib/krb5util/compat_recv.c | 9 |
2 files changed, 12 insertions, 1 deletions
diff --git a/src/lib/krb5util/ChangeLog b/src/lib/krb5util/ChangeLog index a64f389963..5f67841234 100644 --- a/src/lib/krb5util/ChangeLog +++ b/src/lib/krb5util/ChangeLog @@ -1,3 +1,7 @@ +2001-06-26 Ezra Peisach <epeisach@mit.edu> + + * compat_recv.c: Flush out prototype for static krb_v4_recvauth. + 2001-06-11 Ezra Peisach <epeisach@mit.edu> * compat_recv.c: Include k5-util.h to ensure new prototypes agree diff --git a/src/lib/krb5util/compat_recv.c b/src/lib/krb5util/compat_recv.c index f1b503ef35..681f7c04ec 100644 --- a/src/lib/krb5util/compat_recv.c +++ b/src/lib/krb5util/compat_recv.c @@ -47,7 +47,14 @@ #include <string.h> #include "k5-util.h" -static int krb_v4_recvauth(); +static int krb_v4_recvauth(long options, int fd, KTEXT ticket, + char *service, char *instance, + struct sockaddr_in *faddr, + struct sockaddr_in *laddr, + AUTH_DAT *kdata, + char *filename, + Key_schedule schedule, + char *version); #define KRB_V4_SENDAUTH_VERS "AUTHV0.1" /* MUST be 8 chars long */ #define KRB_V5_SENDAUTH_VERS "KRB5_SENDAUTH_V1.0" |