summaryrefslogtreecommitdiff
path: root/lib/conf.c
diff options
context:
space:
mode:
authorLuke Howard <lukeh@padl.com>2011-11-14 17:05:55 +1100
committerLuke Howard <lukeh@padl.com>2011-11-14 17:05:55 +1100
commitf780ff204e39420aabf94a7fab4e2c37790b658f (patch)
tree7484e2ec21c4021f9787445d549dc1bedb81e455 /lib/conf.c
parent34747348ee53e02bb6faa6a6e26c1440e327ff60 (diff)
remove dictionary configuration parameter
Diffstat (limited to 'lib/conf.c')
-rw-r--r--lib/conf.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/conf.c b/lib/conf.c
index f5d1b2b..84bd1a8 100644
--- a/lib/conf.c
+++ b/lib/conf.c
@@ -15,7 +15,6 @@
#if 0
# common config options
- dictionary = STRING
# common realm config options
realm NAME {
@@ -69,7 +68,6 @@ rs_context_read_config(struct rs_context *ctx, const char *config_file)
};
cfg_opt_t opts[] =
{
- CFG_STR ("dictionary", NULL, CFGF_NONE),
CFG_SEC ("realm", realm_opts, CFGF_TITLE | CFGF_MULTI),
CFG_END ()
};
@@ -98,7 +96,6 @@ rs_context_read_config(struct rs_context *ctx, const char *config_file)
if (config == NULL)
return rs_err_ctx_push_fl (ctx, RSE_NOMEM, __FILE__, __LINE__, NULL);
ctx->config = config;
- config->dictionary = cfg_getstr (cfg, "dictionary");
for (i = 0; i < cfg_size (cfg, "realm"); i++)
{