Skip to content
Snippets Groups Projects
Commit 8b5df859 authored by rswindell's avatar rswindell
Browse files

iniReadFile() was truncating all white-space off end of lines (defeating use of

"key: value" syntax), truncate new-line chars only.
parent 6800ab3c
No related branches found
No related tags found
No related merge requests found
......@@ -728,9 +728,9 @@ str_list_t iniReadFile(FILE* fp)
list = strListReadFile(fp, NULL, INI_MAX_LINE_LEN);
if(list!=NULL) {
/* truncate the white-space off end of strings */
/* truncate new-line chars off end of strings */
for(i=0; list[i]!=NULL; i++)
truncsp(list[i]);
truncnl(list[i]);
}
return(list);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment