diff options
author | Florian Weimer <fweimer@redhat.com> | 2019-12-11 09:19:39 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2019-12-11 09:19:39 +0100 |
commit | b5a1271c76ad03a2e0ee044ecb46af03d771e40a (patch) | |
tree | 2eddf656c5f6cfb54ac60e465d4949c1263887f8 /elf | |
parent | e46efff89550a8e693a3362976f85070762c5cb8 (diff) | |
download | glibc-b5a1271c76ad03a2e0ee044ecb46af03d771e40a.tar.gz glibc-b5a1271c76ad03a2e0ee044ecb46af03d771e40a.tar.xz glibc-b5a1271c76ad03a2e0ee044ecb46af03d771e40a.zip |
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 <carlos@redhat.com>
Diffstat (limited to 'elf')
-rw-r--r-- | elf/ldconfig.c | 5 |
1 files changed, 3 insertions, 2 deletions
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; |