diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e9d1eade87..3f63836a7a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2013-08-28 Jan Kratochvil + + Code cleanup. + * nto-tdep.c (nto_find_and_open_solib): Use OPF_TRY_CWD_FIRST. + 2013-08-28 Yao Qi Pedro Alves diff --git a/gdb/nto-tdep.c b/gdb/nto-tdep.c index fa31f140df..69ab5adb2c 100644 --- a/gdb/nto-tdep.c +++ b/gdb/nto-tdep.c @@ -128,7 +128,7 @@ nto_find_and_open_solib (char *solib, unsigned o_flags, char **temp_pathname) arch_path); base = lbasename (solib); - ret = openp (buf, 1, base, o_flags, temp_pathname); + ret = openp (buf, OPF_TRY_CWD_FIRST, base, o_flags, temp_pathname); if (ret < 0 && base != solib) { xsnprintf (arch_path, arch_len, "/%s", solib);