kdc-req-body->till is optional.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@2989 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1997-08-15 01:47:32 +00:00
parent d0596d6136
commit 61717cbfd4
3 changed files with 23 additions and 11 deletions

View File

@@ -368,7 +368,10 @@ init_as_req (krb5_context context,
}
*a->req_body.from = creds->times.starttime;
}
a->req_body.till = creds->times.endtime;
if(creds->times.endtime){
ALLOC(a->req_body.till, 1);
*a->req_body.till = creds->times.endtime;
}
if(creds->times.renew_till){
a->req_body.rtime = malloc(sizeof(*a->req_body.rtime));
if (a->req_body.rtime == NULL) {