Use new diagnostics functions.

This commit is contained in:
Sergey Poznyakoff
2003-11-17 07:39:33 +00:00
parent 7c05e2f650
commit 22ae47de82
2 changed files with 3 additions and 12 deletions

View File

@@ -188,10 +188,7 @@ get_directory_contents (char *path, dev_t device)
if (! dirp)
{
if (ignore_failed_read_option)
savedir_warn (path);
else
savedir_error (path);
savedir_error (path);
}
errno = 0;
@@ -229,10 +226,7 @@ get_directory_contents (char *path, dev_t device)
if (deref_stat (dereference_option, name_buffer, &stat_data))
{
if (ignore_failed_read_option)
stat_warn (name_buffer);
else
stat_error (name_buffer);
stat_diag (name_buffer);
continue;
}

View File

@@ -833,10 +833,7 @@ collect_and_sort_names (void)
if (deref_stat (dereference_option, name->name, &statbuf) != 0)
{
if (ignore_failed_read_option)
stat_warn (name->name);
else
stat_error (name->name);
stat_diag (name->name);
continue;
}
if (S_ISDIR (statbuf.st_mode))