Fix bug #139: Unable to use TLS - due to not handling quotes around configuration strings.

Conflicts:

	src/util/misc.c
This commit is contained in:
Jan Vidar Krey
2010-08-16 22:53:16 +02:00
parent 1af7e26c52
commit ff8b8f5175
3 changed files with 23 additions and 0 deletions

View File

@@ -110,6 +110,7 @@ static int config_parse_line(char* line, int line_count, void* ptr_data)
key = strip_white_space(key);
data = strip_white_space(data);
data = strip_off_quotes(data);
if (!*key || !*data)
{