Browse Source

Don't complain if ld.so.cache is missing.

Joakim Tjernlund 21 years ago
parent
commit
485632ceac
1 changed files with 1 additions and 2 deletions
  1. 1 2
      ldso/ldso/dl-elf.c

+ 1 - 2
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;
 	}