summaryrefslogtreecommitdiff
path: root/lib/radsec.c
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordberg.se>2013-02-11 16:41:47 +0100
committerLinus Nordberg <linus@nordberg.se>2013-02-11 16:41:47 +0100
commitd640207c74e0aaf5b4a3faf61c38e17796bf76a2 (patch)
treed79a0eabf66503525f4bf1a3495e00ed50f7d207 /lib/radsec.c
parent8d113bba795b1b8cf4ab55b362108f2c819e039d (diff)
Add support for configuring client connections too.
We're moving x509 and psk config from rs_realm to rs_peer while allowing these to be configured on the realm level and overriden at peer level. Also, add support for printing the read configuration, for debugging.
Diffstat (limited to 'lib/radsec.c')
-rw-r--r--lib/radsec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/radsec.c b/lib/radsec.c
index db406ae..e6b79cf 100644
--- a/lib/radsec.c
+++ b/lib/radsec.c
@@ -107,11 +107,11 @@ rs_context_destroy (struct rs_context *ctx)
evutil_freeaddrinfo (p->addr_cache);
p->addr_cache = NULL;
}
+ rs_free (ctx, p->transport_cred);
p = p->next;
rs_free (ctx, tmp);
}
free (r->name);
- rs_free (ctx, r->transport_cred);
r = r->next;
rs_free (ctx, tmp);
}