From: Andreas Jaeger Date: Thu, 17 May 2001 15:46:45 +0000 (+0000) Subject: * elf/ldconfig.c (add_dir): Only warn about stat failure if X-Git-Tag: cvs/pre-lgplv2_1~185 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8645ad47297c53794e57af89bc333e6c8813f361;p=thirdparty%2Fglibc.git * elf/ldconfig.c (add_dir): Only warn about stat failure if opt_verbose. (search_dir): Likewise. --- diff --git a/elf/ldconfig.c b/elf/ldconfig.c index d13eea01abd..f0fe60d669e 100644 --- a/elf/ldconfig.c +++ b/elf/ldconfig.c @@ -336,7 +336,8 @@ add_dir (const char *line) if (stat64 (entry->path, &stat_buf)) { - error (0, errno, _("Can't stat %s"), entry->path); + if (opt_verbose) + error (0, errno, _("Can't stat %s"), entry->path); free (entry->path); free (entry); return; @@ -688,7 +689,8 @@ search_dir (const struct dir_entry *entry) a directory. */ if (stat64 (real_file_name, &stat_buf)) { - error (0, errno, _("Can't stat %s"), file_name); + if (opt_verbose) + error (0, errno, _("Can't stat %s"), file_name); continue; } is_dir = S_ISDIR (stat_buf.st_mode);