1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-14 07:46:28 +02:00
This commit is contained in:
Jim Meyering
1994-07-30 14:17:26 +00:00
parent 2ac5b86618
commit 2399435ba4

View File

@@ -40,8 +40,8 @@
#include "modechange.h"
#include "system.h"
#include "version.h"
int lstat ();
#include "safe-stat.h"
#include "safe-lstat.h"
char *savedir ();
char *xmalloc ();
@@ -196,7 +196,7 @@ change_file_mode (file, changes, deref_symlink)
unsigned short newmode;
int errors = 0;
if (lstat (file, &file_stats))
if (SAFE_LSTAT (file, &file_stats))
{
if (force_silent == 0)
error (0, errno, "%s", file);
@@ -207,7 +207,7 @@ change_file_mode (file, changes, deref_symlink)
if (! deref_symlink)
return 0;
else
if (stat (file, &file_stats))
if (SAFE_STAT (file, &file_stats))
{
if (force_silent == 0)
error (0, errno, "%s", file);