From 6907376cc764767295d537c3407573427d378026 Mon Sep 17 00:00:00 2001 From: Theodore Tso Date: Thu, 21 Mar 1996 04:19:30 +0000 Subject: [PATCH] Change type of pa_type field in krb5_pa_data to be krb5_preauthtype, for consistency's sake. Added prototype for krb5_copy_addr(). Change type of etype in krb5_etype_info_entry to be krb5_enctype, for consistency's sake. (More cleanup of windows 16bit vs. 32bit) git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@7692 dc483132-0cff-0310-8789-dd5450dbe970 --- src/include/ChangeLog | 8 ++++++++ src/include/k5-int.h | 2 +- src/include/krb5.hin | 4 +++- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/include/ChangeLog b/src/include/ChangeLog index 1f9e5d6b6..077f1ef09 100644 --- a/src/include/ChangeLog +++ b/src/include/ChangeLog @@ -1,3 +1,11 @@ +Wed Mar 20 22:55:50 1996 Theodore Y. Ts'o + + * krb5.hin (krb5_pa_data): Change type of pa_type field in + krb5_pa_data to be krb5_preauthtype, for consistency's + sake. Added prototype for krb5_copy_addr(). Change type + of etype in krb5_etype_info_entry to be krb5_enctype, for + consistency's sake. + Sat Feb 24 21:46:13 1996 Theodore Y. Ts'o * Makefile.in (all-windows): hpux make doesn't grok $@, so I'm diff --git a/src/include/k5-int.h b/src/include/k5-int.h index 37a8c8c9d..17be4e32e 100644 --- a/src/include/k5-int.h +++ b/src/include/k5-int.h @@ -509,7 +509,7 @@ typedef struct _krb5_alt_method { */ typedef struct _krb5_etype_info_entry { krb5_magic magic; - krb5_int32 etype; + krb5_enctype etype; int length; krb5_octet *salt; } krb5_etype_info_entry; diff --git a/src/include/krb5.hin b/src/include/krb5.hin index 7c7596607..d19c0be7f 100644 --- a/src/include/krb5.hin +++ b/src/include/krb5.hin @@ -818,7 +818,7 @@ typedef struct _krb5_last_req_entry { /* pre-authentication data */ typedef struct _krb5_pa_data { krb5_magic magic; - krb5_ui_2 pa_type; + krb5_preauthtype pa_type; int length; krb5_octet FAR *contents; } krb5_pa_data; @@ -1414,6 +1414,8 @@ krb5_error_code krb5_copy_principal KRB5_PROTOTYPE((krb5_context, krb5_const_principal, krb5_principal *)); +krb5_error_code krb5_copy_addr + KRB5_PROTOTYPE((krb5_context, const krb5_address *, krb5_address **)); krb5_error_code krb5_copy_addresses KRB5_PROTOTYPE((krb5_context, krb5_address * krb5_const *, -- 2.26.2