From b5a1271c76ad03a2e0ee044ecb46af03d771e40a Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Wed, 11 Dec 2019 09:19:39 +0100 Subject: ldconfig: Do not print a warning for a missing ld.so.conf file The configuration file is not needed for working system, so printing a warning is not helpful. Reviewed-by: Carlos O'Donell --- elf/ldconfig.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'elf/ldconfig.c') diff --git a/elf/ldconfig.c b/elf/ldconfig.c index 139161b3a6..62bbe77a88 100644 --- a/elf/ldconfig.c +++ b/elf/ldconfig.c @@ -1079,9 +1079,10 @@ parse_conf (const char *filename, bool do_chroot) if (file == NULL) { - error (0, errno, _("\ + if (errno != ENOENT) + error (0, errno, _("\ Warning: ignoring configuration file that cannot be opened: %s"), - canon); + canon); if (canon != filename) free ((char *) canon); return; -- cgit 1.4.1