better parsing errors

This commit is contained in:
Dana Jansens 2003-03-23 00:52:01 +00:00
parent 9ff6ea27b1
commit d8268296fb
2 changed files with 7 additions and 6 deletions

View file

@ -89,13 +89,12 @@ gboolean config_set(char *name, ConfigValueType type, ConfigValue value)
gboolean ret = FALSE;
name = g_ascii_strdown(name, -1);
g_message("Setting %s", name);
/*g_datalist_foreach(&config_def, print_config, NULL);*/
def = g_datalist_get_data(&config_def, name);
if (def == NULL) {
g_message("Invalid config option '%s'", name);
g_warning("Invalid config option '%s'", name);
} else {
if (def->hasList) {
gboolean found = FALSE;
@ -111,10 +110,12 @@ gboolean config_set(char *name, ConfigValueType type, ConfigValue value)
} while ((it = it->next));
if (!found)
g_message("Invalid value '%s' for config option '%s'",
g_warning("Invalid value '%s' for config option '%s'",
value.string, name);
else
ret = TRUE;
} else if (type != def->type) {
g_warning("Incorrect type of value for config option '%s'", name);
} else
ret = TRUE;

View file

@ -90,10 +90,10 @@ static void newline()
if (!comment) {
if (!haserror && entry.name != NULL && (signed)entry.type >= 0) {
if (!config_set(entry.name, entry.type, entry.value))
g_warning("Invalid option in '%s': '%s'\n",
yyfilename, entry.name);
g_warning("Parser error in '%s' on line %d\n", yyfilename,
yylineno);
} else {
printf("Parser error in '%s' on line %d\n", yyfilename, yylineno);
g_warning("Parser error in '%s' on line %d", yyfilename, yylineno);
}
g_free(entry.name);
entry.name = NULL;