Commit 0957a746 authored by Wayne Davison's avatar Wayne Davison

When SUPPORT_LINKS is not defined, we now go ahead and provide

the do_lstat() function and just have it call do_stat().
parent c72f5bd9
...@@ -72,7 +72,7 @@ int do_lchown(const char *path, uid_t owner, gid_t group) ...@@ -72,7 +72,7 @@ int do_lchown(const char *path, uid_t owner, gid_t group)
{ {
if (dry_run) return 0; if (dry_run) return 0;
RETURN_ERROR_IF_RO_OR_LO; RETURN_ERROR_IF_RO_OR_LO;
#ifndef HAVE_LCHOWN #if !HAVE_LCHOWN
#define lchown chown #define lchown chown
#endif #endif
return lchown(path, owner, group); return lchown(path, owner, group);
...@@ -219,16 +219,18 @@ int do_stat(const char *fname, STRUCT_STAT *st) ...@@ -219,16 +219,18 @@ int do_stat(const char *fname, STRUCT_STAT *st)
#endif #endif
} }
#if SUPPORT_LINKS
int do_lstat(const char *fname, STRUCT_STAT *st) int do_lstat(const char *fname, STRUCT_STAT *st)
{ {
#if HAVE_OFF64_T #if SUPPORT_LINKS
# if HAVE_OFF64_T
return lstat64(fname, st); return lstat64(fname, st);
#else # else
return lstat(fname, st); return lstat(fname, st);
# endif
#else
return do_stat(fname, st);
#endif #endif
} }
#endif
int do_fstat(int fd, STRUCT_STAT *st) int do_fstat(int fd, STRUCT_STAT *st)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment