From a3d3f308dfb59453128562eb548dfae87d85615d Mon Sep 17 00:00:00 2001 From: kcr Date: Fri, 20 Apr 2001 21:20:29 +0000 Subject: [PATCH 1/1] server/kopt.c: in decomp_ticket make sure certain 32 bit values are32 bit on architectures where 'int' is not 32 bits. debian/changlelog: note this git-svn-id: svn://svn.1ts.org/debian/trunk/zephyr@47 cbed1d16-5ef5-0310-b6a1-d4a37b08ba1f --- debian/changelog | 7 +++++++ server/kopt.c | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 44215a2..b885062 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +zephyr (2.1.20000421.SNAPSHOT-11) unstable; urgency=low + + * tweak to kopt.c to maybe allow alpha build to work. closes: 94600 + * + + -- + zephyr (2.1.20000421.SNAPSHOT-10) unstable; urgency=low * [hartmans] libzephyr3 should not depend on krb5, closes: #93187 diff --git a/server/kopt.c b/server/kopt.c index eccdc21..9b777f5 100644 --- a/server/kopt.c +++ b/server/kopt.c @@ -541,11 +541,11 @@ decomp_ticket(tkt, flags, pname, pinstance, prealm, paddress, session, char *pname; /* Authentication name */ char *pinstance; /* Principal's instance */ char *prealm; /* Principal's authentication domain */ - unsigned long *paddress; /* Net address of entity + unsigned KRB4_32 *paddress; /* Net address of entity * requesting ticket */ C_Block session; /* Session key inserted in ticket */ int *life; /* Lifetime of the ticket */ - unsigned long *time_sec; /* Issue time and date */ + unsigned KRB4_32 *time_sec; /* Issue time and date */ char *sname; /* Service name */ char *sinstance; /* Service instance */ C_Block key; /* Service's secret key -- 2.45.2