about summary refs log tree commit diff
path: root/elf
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2001-05-17 15:46:45 +0000
committerAndreas Jaeger <aj@suse.de>2001-05-17 15:46:45 +0000
commit8645ad47297c53794e57af89bc333e6c8813f361 (patch)
tree8755216b7c2c76867256db0c540b290046a4d594 /elf
parent4be8dba8d28796a2a40acc10e43ba05be0545485 (diff)
downloadglibc-8645ad47297c53794e57af89bc333e6c8813f361.tar.gz
glibc-8645ad47297c53794e57af89bc333e6c8813f361.tar.xz
glibc-8645ad47297c53794e57af89bc333e6c8813f361.zip
* elf/ldconfig.c (add_dir): Only warn about stat failure if
opt_verbose. 
(search_dir): Likewise.
Diffstat (limited to 'elf')
-rw-r--r--elf/ldconfig.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/elf/ldconfig.c b/elf/ldconfig.c
index d13eea01ab..f0fe60d669 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);