summaryrefslogtreecommitdiff
path: root/rsync.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2007-09-23 22:19:55 +0000
committerWayne Davison <wayned@samba.org>2007-09-23 22:19:55 +0000
commit13710874ce907cd9405f83814cbebbe73f884e2e (patch)
tree1cca988d58618c855b1aa029c0a9ae304113bc5f /rsync.c
parent7341ee2dfd0c183d7c3878f511cebcd57003c173 (diff)
downloadrsync-13710874ce907cd9405f83814cbebbe73f884e2e.tar.gz
Changed "statx" to "stat_x" to try to work around a build problem on AIX.
Diffstat (limited to 'rsync.c')
-rw-r--r--rsync.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rsync.c b/rsync.c
index d9179314..731528fe 100644
--- a/rsync.c
+++ b/rsync.c
@@ -337,11 +337,11 @@ mode_t dest_mode(mode_t flist_mode, mode_t stat_mode, int dflt_perms,
return new_mode;
}
-int set_file_attrs(const char *fname, struct file_struct *file, statx *sxp,
+int set_file_attrs(const char *fname, struct file_struct *file, stat_x *sxp,
const char *fnamecmp, int flags)
{
int updated = 0;
- statx sx2;
+ stat_x sx2;
int change_uid, change_gid;
mode_t new_mode = file->mode;
int inherit;