From 17df2d8f8ee7864996c8a6a45886ccd6e34d065d Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Wed, 26 Feb 2014 21:02:53 +0000 Subject: tool_cfgable: Added GlobalConfig pointer to OperationConfig In order to ease the moving of global options such as the error stream, updated the OperationConfig structure to point to the GlobalConfig. --- src/tool_parsecfg.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/tool_parsecfg.c') diff --git a/src/tool_parsecfg.c b/src/tool_parsecfg.c index 9adbe8229..53e2660a6 100644 --- a/src/tool_parsecfg.c +++ b/src/tool_parsecfg.c @@ -236,6 +236,9 @@ int parseconfig(const char *filename, struct GlobalConfig *global) /* Copy the easy handle */ operation->next->easy = global->easy; + /* Set the global config pointer */ + operation->next->global = global; + /* Update the last operation pointer */ global->last = operation->next; -- cgit v1.2.3