Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
* linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
result.
+2012-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
+
+ Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
+ * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
+ result.
+
2012-01-27 Doug Evans <dje@google.com>
* configure.ac (with_python): Fix absolute path handling for win32.
{
const struct symbol_matcher_data *data = d;
- if (data->symbol_name_match_p (name, data->lookup_name))
+ if (data->symbol_name_match_p (name, data->lookup_name) == 0)
return 1;
return 0;
}