From 485632ceac9407b733fadd3280058162f3762453 Mon Sep 17 00:00:00 2001 From: Joakim Tjernlund Date: Wed, 6 Oct 2004 13:08:47 +0000 Subject: Don't complain if ld.so.cache is missing. --- ldso/ldso/dl-elf.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'ldso') diff --git a/ldso/ldso/dl-elf.c b/ldso/ldso/dl-elf.c index 2dda6e5da..80c8fe438 100644 --- a/ldso/ldso/dl-elf.c +++ b/ldso/ldso/dl-elf.c @@ -51,8 +51,7 @@ int _dl_map_cache(void) return 0; if (_dl_stat(LDSO_CACHE, &st) - || (fd = _dl_open(LDSO_CACHE, O_RDONLY, 0)) < 0) { - _dl_dprintf(2, "%s: can't open cache '%s'\n", _dl_progname, LDSO_CACHE); + || (fd = _dl_open(LDSO_CACHE, O_RDONLY, 0)) < 0) { _dl_cache_addr = (caddr_t) - 1; /* so we won't try again */ return -1; } -- cgit v1.2.3