diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/config-parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/config-parser.c b/common/config-parser.c index f95d44e..b5852b7 100644 --- a/common/config-parser.c +++ b/common/config-parser.c @@ -218,7 +218,7 @@ cfg_parse_file(const char* filename, void* data, char** memory) t++; name = strtrim(p); - value = t; + value = strtrim(t); } if(name && value) |