aboutsummaryrefslogtreecommitdiff
path: root/gdb/valops.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2003-11-06 22:54:02 +0000
committerAndrew Cagney <cagney@redhat.com>2003-11-06 22:54:02 +0000
commitbf896cb059775f7c8a68e13a733191755fdc1a85 (patch)
treea6f1eef6b583ba11704c991afe58c040b5df72af /gdb/valops.c
parent0b915e9cc2215e3037d333be1bf54dbfc76cdb93 (diff)
downloadgdb-bf896cb059775f7c8a68e13a733191755fdc1a85.zip
gdb-bf896cb059775f7c8a68e13a733191755fdc1a85.tar.gz
gdb-bf896cb059775f7c8a68e13a733191755fdc1a85.tar.bz2
2003-11-06 Andrew Cagney <cagney@redhat.com>
* valops.c (destructor_name_p): Replace STREQN with strncmp. * top.c (command_line_input): Ditto. * objc-exp.y (yylex): Ditto. * minsyms.c (prim_record_minimal_symbol_and_info): Ditto. * jv-exp.y (yylex): Ditto. * f-exp.y (yylex): Ditto. * event-top.c (command_line_handler): Ditto. * environ.c (get_in_environ): Ditto. (set_in_environ): Ditto. * dwarfread.c (handle_producer): Ditto. * dbxread.c (process_one_symbol): Ditto. * c-typeprint.c (c_type_print_base): Ditto. * c-exp.y (yylex): Ditto. 2003-11-06 Andrew Cagney <cagney@redhat.com> * mi-cmd-var.c (mi_cmd_var_set_format): Replace STREQN with strncmp.
Diffstat (limited to 'gdb/valops.c')
-rw-r--r--gdb/valops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/valops.c b/gdb/valops.c
index e037441..0d24708 100644
--- a/gdb/valops.c
+++ b/gdb/valops.c
@@ -2137,7 +2137,7 @@ destructor_name_p (const char *name, const struct type *type)
len = strlen (dname);
else
len = cp - dname;
- if (strlen (name + 1) != len || !STREQN (dname, name + 1, len))
+ if (strlen (name + 1) != len || strncmp (dname, name + 1, len) != 0)
error ("name of destructor must equal name of class");
else
return 1;