Skip Menu |
 

Subject: Corrections to krb524 support
Summary of the changes that need to be made for the krb524 support to
provide backward compatibility with programs built for use with old
krb524 library.


krb5/src/include/krb5.hin:

The macro declaration of krb524_init_ets() needs to be changed from

#define krb524_init_ets() (0)

to

#define krb524_init_ets(x) (0)

krb5/src/krb524/krb524.c:

The function declaration for krb524_init_ets() needs to change from

void KRB5_CALLCONV krb524_init_ets(void)

to

void KRB5_CALLCONV_C krb524_init_ets(krb5_context context)

The function declaration for krb524_convert_creds_kdc needs to have
the calling convention changed from

KRB5_CALLCONV

to

KRB5_CALLCONV_C
From: tlyu@mit.edu
Subject: CVS Commit
* krb5.hin: krb524_init_ets() takes one argument.

* krb524.c (krb524_convert_creds_kdc, krb524_init_ets): Mark as
KRB5_CALLCONV_WRONG.
(krb524_init_ets): Takes a krb5_context.


To generate a diff of this commit:



cvs diff -r1.372 -r1.373 krb5/src/include/ChangeLog
cvs diff -r1.163 -r1.164 krb5/src/include/krb5.hin
cvs diff -r1.131 -r1.132 krb5/src/krb524/ChangeLog
cvs diff -r1.3 -r1.4 krb5/src/krb524/krb524.c
From: tlyu@mit.edu
Subject: CVS Commit
pullup from trunk


To generate a diff of this commit:



cvs diff -r1.348.2.17 -r1.348.2.18 krb5/src/include/ChangeLog
cvs diff -r1.154.2.7 -r1.154.2.8 krb5/src/include/krb5.hin
cvs diff -r1.122.2.6 -r1.122.2.7 krb5/src/krb524/ChangeLog
cvs diff -r1.1.2.2 -r1.1.2.3 krb5/src/krb524/krb524.c