From 4783edac649084089569bed3ee8a9cb4aa662ab6 Mon Sep 17 00:00:00 2001 From: Christof Hanke Date: Mon, 26 Nov 2007 20:39:46 +0000 Subject: [PATCH] DEVEL15-kauth-ubik-wrap-pad-requisite-args-out-20071126 of course, if Date is larger than 32 bits, the wrapper is broken anyway. we should really get rid of the wrapper (cherry picked from commit 5d8c44bc09fde707dc6aaaf037b2c8805cce0ed1) --- src/kauth/authclient.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/kauth/authclient.c b/src/kauth/authclient.c index 9d9996637..29081918e 100644 --- a/src/kauth/authclient.c +++ b/src/kauth/authclient.c @@ -553,15 +553,15 @@ ka_Authenticate(char *name, char *instance, char *cell, struct ubik_client * con version = 2; code = - kawrap_ubik_Call(KAA_AuthenticateV2, conn, 0, name, instance, start, - end, &arequest, &oanswer); + kawrap_ubik_Call(KAA_AuthenticateV2, conn, 0, name, instance, + start, end, &arequest, &oanswer, 0, 0); if (code == RXGEN_OPCODE) { oanswer.MaxSeqLen = sizeof(answer); oanswer.SeqBody = (char *)&answer; version = 1; code = ubik_Call(KAA_Authenticate, conn, 0, name, instance, start, end, - &arequest, &oanswer); + &arequest, &oanswer, 0, 0); if (code == RXGEN_OPCODE) { extern int KAA_Authenticate_old(); oanswer.MaxSeqLen = sizeof(answer_old); -- 2.39.5