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

@@ -34,6 +34,7 @@ extern void base32_encode(const unsigned char* buffer, size_t len, char* result)
extern void base32_decode(const char* src, unsigned char* dst, size_t len);
extern char* strip_white_space(char* string);
extern void strip_off_ini_line_comments(char* line, int line_count);
extern char* strip_off_quotes(char* line);
extern int file_read_lines(const char* file, void* data, file_line_handler_t handler);