adjusted _parse_key to also allow for configs without arguments
parent
baf75c9c78
commit
1ae19b5d04
|
@ -82,7 +82,7 @@ void _parse_key(FILE* file, char* out) {
|
||||||
char c;
|
char c;
|
||||||
do {
|
do {
|
||||||
c = fgetc(file);
|
c = fgetc(file);
|
||||||
if(c == ':') {
|
if(c == ':' || c == ';') {
|
||||||
*out = '\0';
|
*out = '\0';
|
||||||
} else if(c == '#') {
|
} else if(c == '#') {
|
||||||
freadto(file, '\n');
|
freadto(file, '\n');
|
||||||
|
@ -90,7 +90,7 @@ void _parse_key(FILE* file, char* out) {
|
||||||
*out = c;
|
*out = c;
|
||||||
++out;
|
++out;
|
||||||
}
|
}
|
||||||
} while(c != ':');
|
} while(c != ':' && c != ';');
|
||||||
}
|
}
|
||||||
|
|
||||||
static
|
static
|
||||||
|
|
Loading…
Reference in New Issue