aboutsummaryrefslogtreecommitdiffstats
path: root/src/confparser.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/confparser.c')
-rw-r--r--src/confparser.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/confparser.c b/src/confparser.c
index 3a7c357..f6ea3a0 100644
--- a/src/confparser.c
+++ b/src/confparser.c
@@ -16,7 +16,7 @@ ERRLOG(configfile);
const char * const CONFIG_NAME = "/ckrc";
-void conf_values_initialize(Conf *c) {
+void initialize_conf(Conf *c) {
#define X(var, str, name) \
c->var = NULL;
CONFIG_VARIABLES_TABLE
@@ -55,7 +55,6 @@ void make_config_name(char * ret, const char *confPath) {
int config_file_parse(Conf *conf, UserOpt *opt) {
LOG("Using '%s' for ck configuration directory", opt->confDir);
- conf_values_initialize(conf);
FILE *confPtr;
char confName[STR_L];
char line[STR_L];