[1035] in Kerberos-V5-bugs
nolrentry init not correct
daemon@ATHENA.MIT.EDU (Jim Miller)
Wed Jan 4 18:06:24 1995
From: jim@bilbo.suite.com (Jim Miller)
Date: Wed, 4 Jan 95 17:04:49 -0600
To: krb5-bugs@MIT.EDU
Reply-To: Jim_Miller@suite.com
This bug report is for KRB5, beta 4, patchlevel 3.
In the file kdc_util.c...
The initialization of the static structure "nolrentry" needs to be changed
to init the magic field.
Was:
static krb5_last_req_entry nolrentry = { KRB5_LRQ_NONE, 0 };
Should be:
static krb5_last_req_entry nolrentry = { 0, KRB5_LRQ_NONE, 0 };
Not a biggie.
Jim_Miller@suite.com
P.S. What is the purpose of the new magic fields?