From 94bc38df829c4816e629c7dcaed31b1e7c75bc4b Mon Sep 17 00:00:00 2001 From: gramanas Date: Mon, 16 Apr 2018 14:34:30 +0300 Subject: Add asan option to cmake finish init without any asan warnings --- src/confparser.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/confparser.h') diff --git a/src/confparser.h b/src/confparser.h index 2ed8f82..197ff3a 100644 --- a/src/confparser.h +++ b/src/confparser.h @@ -8,6 +8,9 @@ * ------------------------------------------------------------------ */ #ifndef CONFPARSER_H #define CONFPARSER_H + +#include "actionparser.h" + #define CONFIG_VARIABLES_TABLE \ X(VC_dir, " version_control_dir = %s ", "Version Control directory") \ X(SCRT_dir, " secret_dir = %s " , "Secret directory") @@ -40,6 +43,7 @@ struct ConfigValues { }; #undef X -extern int config_file_parse(Conf *conf); +extern int config_file_parse(Conf *conf, UserOpt *opt); +extern int init_create_config_file(UserOpt *opt); #endif // CONFPARSER_H -- cgit v1.2.3