From c0c1280e0c8e1bc0692ad016890c2065c7f41d80 Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Sun, 20 Feb 2011 16:44:58 +0100 Subject: Push an ENOMEM error on the connection rather than the context. --- lib/tls.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib') diff --git a/lib/tls.c b/lib/tls.c index 0b3580c..d9eb801 100644 --- a/lib/tls.c +++ b/lib/tls.c @@ -14,9 +14,9 @@ #include "../radsecproxy.h" static struct tls * -_get_tlsconf (struct rs_context *ctx, const struct rs_realm *realm) +_get_tlsconf (struct rs_connection *conn, const struct rs_realm *realm) { - struct tls *c = rs_malloc (ctx, sizeof (struct tls)); + struct tls *c = rs_malloc (conn->ctx, sizeof (struct tls)); if (c) { @@ -34,7 +34,7 @@ _get_tlsconf (struct rs_context *ctx, const struct rs_realm *realm) c->policyoids = (char **) NULL; /* NYI */ } else - rs_err_ctx_push_fl (ctx, RSE_NOMEM, __FILE__, __LINE__, NULL); + rs_err_conn_push_fl (conn, RSE_NOMEM, __FILE__, __LINE__, NULL); return c; } @@ -49,7 +49,7 @@ rs_tls_init (struct rs_connection *conn) assert (conn->ctx); ctx = conn->ctx; - tlsconf = _get_tlsconf (ctx, conn->active_peer->realm); + tlsconf = _get_tlsconf (conn, conn->active_peer->realm); if (!tlsconf) return -1; ssl_ctx = tlsgetctx (RADPROT_TLS, tlsconf); -- cgit v1.1