Date: Sat, 23 Nov 2002 18:20:02 -0800 (PST) From: Peter Much <pmc@citylink.dinoex.sub.org> To: freebsd-bugs@FreeBSD.org Subject: misc/35865: pam_krb5 crashes in pam_sm_setcred() Message-ID: <200211240220.gAO2K2v8059734@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR misc/35865; it has been noted by GNATS.
From: Peter Much <pmc@citylink.dinoex.sub.org>
To: juha-matti.tilli@pp.inet.fi
Cc: freebsd-gnats-submit@FreeBSD.org
Subject: misc/35865: pam_krb5 crashes in pam_sm_setcred()
Date: Sun, 24 Nov 2002 03:04:05 +0100 (CET)
This call seems to have parameters exchanged:
while ((krbret = krb5_cc_next_cred(pam_context, ccache_temp,
&cursor, &creds) == 0)) {
It works with:
while ((krbret = krb5_cc_next_cred(pam_context, ccache_temp,
&creds, &cursor) == 0)) {
This is a difference (or inconsistency) with heimdal Kerberos,
or whoever's to blame. See also this and the followup to it:
http://www.stacken.kth.se/lists/heimdal-discuss/2001-04/msg00008.html
Juha-Matti: thanks for precise report, saved me time searching.:-)
PMc
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200211240220.gAO2K2v8059734>
