aboutsummaryrefslogtreecommitdiff
path: root/src/common/confline.c
AgeCommit message (Collapse)Author
2017-05-28Replace 3-star pointer with 2-star pointerDaniel Pinto
2017-05-28Fix crash with %includeDaniel Pinto
Fixes crash when including a folder that contains a non-empty file without any values followed by any other non-empty file.
2017-05-19Remove call to get_unquoted_path in config_process_include()Nick Mathewson
parse_config_line_from_str_verbose() already looks for strings that are surrounded by quotes, and processes them with unescape_string(). So things were getting decoded twice, which was (in turn) playing havoc with backslashes on Windows.
2017-05-18Add support for %include funcionality on torrc #1922Daniel Pinto
config_get_lines is now split into two functions: - config_get_lines which is the same as before we had %include - config_get_lines_include which actually processes %include
2017-04-15Add a config_line_prepend() functionNick Mathewson
2017-04-06Explain config_line_find() behavior on duplicates.Nick Mathewson
2017-04-06Add an assertion to config_line_append().Nick Mathewson
2017-04-04Move config line parsing function to confline.cNick Mathewson
2017-04-04Move config_line_t functions from confparse.c into common.Nick Mathewson
I'm doing this to storagedir to used config_line_t.