summaryrefslogtreecommitdiff
path: root/lib/radsec.c
diff options
context:
space:
mode:
authorLuke Howard <lukeh@padl.com>2011-11-14 12:43:48 +1100
committerLuke Howard <lukeh@padl.com>2011-11-14 12:43:48 +1100
commit3fd136cdbc85ddff5ed0a5953ee1827b9a948748 (patch)
tree3f107214f42f51be4b465057d3948c2862ad9177 /lib/radsec.c
parenta13cddc1331aa1f5e7dca7d1b44482951d2757bf (diff)
remove rs_context_init_freeradius_dict
Diffstat (limited to 'lib/radsec.c')
-rw-r--r--lib/radsec.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/lib/radsec.c b/lib/radsec.c
index 70a968e..7421755 100644
--- a/lib/radsec.c
+++ b/lib/radsec.c
@@ -48,38 +48,6 @@ rs_context_create (struct rs_context **ctx)
return RSE_OK;
}
-/** Initialize freeradius dictionary. */
-int
-rs_context_init_freeradius_dict (struct rs_context *ctx, const char *dict)
-{
- int r = RSE_OK;
- size_t dictlen;
- char *dir = NULL;
- char *fn = NULL;
-
- if (dict == NULL)
- if (ctx->config != NULL && ctx->config->dictionary)
- dict = ctx->config->dictionary;
-
- dictlen = strlen (dict);
- dir = rs_calloc (ctx, 1, dictlen + 1);
- fn = rs_calloc (ctx, 1, dictlen + 1);
- if (dir == NULL || fn == NULL)
- {
- r = rs_err_ctx_push_fl (ctx, RSE_NOMEM, __FILE__, __LINE__, NULL);
- goto out;
- }
- strncpy (dir, dict, dictlen);
- strncpy (fn, dict, dictlen);
-
- out:
- if (dir)
- rs_free (ctx, dir);
- if (fn)
- rs_free (ctx, fn);
- return r;
-}
-
struct rs_error *
rs_resolv (struct evutil_addrinfo **addr,
rs_conn_type_t type,