diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-24 19:06:37 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 14:00:33 +0200 |
commit | 406aa4df9beb44eadedd530bd0a4c87e7e61442a (patch) | |
tree | 00261136c162cf3e8735a74de8e1125ff578bc42 /ldso/libdl/libdl.c | |
parent | bfba593804037746d5ffeab4aef2426031e1c49f (diff) |
libdl: no need for _dl_strstr in libdl, use strstr
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'ldso/libdl/libdl.c')
-rw-r--r-- | ldso/libdl/libdl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/libdl/libdl.c b/ldso/libdl/libdl.c index 214e69986..784a4393a 100644 --- a/ldso/libdl/libdl.c +++ b/ldso/libdl/libdl.c @@ -335,7 +335,7 @@ static void *do_dlopen(const char *libname, int flag) # ifdef __SUPPORT_LD_DEBUG__ _dl_debug = getenv("LD_DEBUG"); if (_dl_debug) { - if (_dl_strstr(_dl_debug, "all")) { + if (strstr(_dl_debug, "all")) { _dl_debug_detail = _dl_debug_move = _dl_debug_symbols = _dl_debug_reloc = _dl_debug_bindings = _dl_debug_nofixups = (void*)1; } else { |