summaryrefslogtreecommitdiffstats
path: root/src/lib/krb5/asn.1/lsrq2klsrq.c
blob: 81fb27c2f62992c32a09c9f6fdb40cd4c314d339 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
 * $Source$
 * $Author$
 *
 * Copyright 1989,1990 by the Massachusetts Institute of Technology.
 *
 * For copying and distribution information, please see the file
 * <krb5/copyright.h>.
 *
 * Glue between Kerberos version and ISODE 6.0 version of structures.
 */

#if !defined(lint) && !defined(SABER)
static char rcsid_lsrq2klsrq_c[] =
"$Id$";
#endif	/* lint || saber */

#include <krb5/copyright.h>
#include <krb5/krb5.h>

/*#include <time.h> */
#include <isode/psap.h>
#include "KRB5-types.h"
#include "asn1glue.h"
#include "asn1defs.h"

#include <krb5/ext-proto.h>

/* ISODE defines max(a,b) */

krb5_last_req_entry **
KRB5_LastReq2krb5_last_req(val, error)
const struct type_KRB5_LastReq *val;
register int *error;
{
    register krb5_last_req_entry **retval;
    register int i;

    /* plus one for null terminator */
    retval = (krb5_last_req_entry **) xcalloc(val->nelem + 1,
					      sizeof(krb5_last_req_entry *));
    if (!retval) {
	*error = ENOMEM;
	return(0);
    }
    for (i = 0; i < val->nelem; i++) {
	retval[i] = (krb5_last_req_entry *) xmalloc(sizeof(*retval[i]));
	if (!retval[i]) {
	    krb5_free_last_req(retval);
	    *error = ENOMEM;
	    return(0);
	}
	retval[i]->value = gentime2unix(val->element_KRB5_4[i]->lr__value,
					error);
	if (*error) {
	    /* value is zero if error, so it won't get freed... */
	    krb5_free_last_req(retval);
	    return(0);
	}
	retval[i]->lr_type = val->element_KRB5_4[i]->lr__type;
    }
    retval[i] = 0;
    return(retval);
}