summaryrefslogtreecommitdiff
path: root/src/configfile.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/configfile.h')
-rw-r--r--src/configfile.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/configfile.h b/src/configfile.h
index 55a13d5e..5f87d181 100644
--- a/src/configfile.h
+++ b/src/configfile.h
@@ -6,9 +6,9 @@
typedef struct {
int ok;
- array *config;
- buffer *ctx_name;
- array *ctx_config;
+ array *all_configs;
+ array *configs_stack; /* to parse nested block */
+ data_config *current; /* current started with { */
} config_t;
void *configparserAlloc(void *(*mallocProc)(size_t));