mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
* elf/ldconfig.c (add_dir): Only warn about stat failure if
opt_verbose. (search_dir): Likewise.
This commit is contained in:
parent
4be8dba8d2
commit
8645ad4729
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user