Merge branch 'fix-set-tabs'
This commit is contained in:
commit
a153311040
|
@ -350,13 +350,18 @@ void parse_file(const char *f) {
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (strcasecmp(key, "set") == 0) {
|
if (strcasecmp(key, "set") == 0) {
|
||||||
if (value[0] != '$')
|
if (value[0] != '$') {
|
||||||
die("Malformed variable assignment, name has to start with $\n");
|
ELOG("Malformed variable assignment, name has to start with $\n");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
/* get key/value for this variable */
|
/* get key/value for this variable */
|
||||||
char *v_key = value, *v_value;
|
char *v_key = value, *v_value;
|
||||||
if ((v_value = strstr(value, " ")) == NULL)
|
if ((v_value = strstr(value, " ")) == NULL &&
|
||||||
die("Malformed variable assignment, need a value\n");
|
(v_value = strstr(value, "\t")) == NULL) {
|
||||||
|
ELOG("Malformed variable assignment, need a value\n");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
*(v_value++) = '\0';
|
*(v_value++) = '\0';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue