summaryrefslogtreecommitdiffstats
path: root/source/smbwrapper
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-10-14 03:56:42 +0000
committerTim Potter <tpot@samba.org>2003-10-14 03:56:42 +0000
commit18adfdbe0c6ed79ba8ac07956b1e7abc226556c3 (patch)
tree6fd0f8da65fdba7789964343c80633a441d2d13b /source/smbwrapper
parentf8994483484cab47f0d6a6934979f69402dba894 (diff)
downloadsamba-18adfdbe0c6ed79ba8ac07956b1e7abc226556c3.tar.gz
samba-18adfdbe0c6ed79ba8ac07956b1e7abc226556c3.tar.xz
samba-18adfdbe0c6ed79ba8ac07956b1e7abc226556c3.zip
Enclose usage of st_blksize and st_blocks struct stat members in
#ifdef HAVE_STAT_ST_BLKSIZE and #ifdef HAVE_STAT_ST_BLOCKS, respectively. Fixes bug 550 reported by Joachim Schmitz <schmitz@hp.com>.
Diffstat (limited to 'source/smbwrapper')
-rw-r--r--source/smbwrapper/smbw.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/smbwrapper/smbw.c b/source/smbwrapper/smbw.c
index 7eb01c7da33..0ddacdf8ba5 100644
--- a/source/smbwrapper/smbw.c
+++ b/source/smbwrapper/smbw.c
@@ -1480,8 +1480,12 @@ say no to acls
st64->st_atime = st->st_atime;
st64->st_mtime = st->st_mtime;
st64->st_ctime = st->st_ctime;
+#ifdef HAVE_STAT_ST_BLKSIZE
st64->st_blksize = st->st_blksize;
+#endif
+#ifdef HAVE_STAT_ST_BLOCKS
st64->st_blocks = st->st_blocks;
+#endif
}
#endif
@@ -1545,8 +1549,12 @@ struct kernel_stat {
st->st_gid = kbuf->st_gid;
st->st_rdev = kbuf->st_rdev;
st->st_size = kbuf->st_size;
+#ifdef HAVE_STAT_ST_BLKSIZE
st->st_blksize = kbuf->st_blksize;
+#endif
+#ifdef HAVE_STAT_ST_BLOCKS
st->st_blocks = kbuf->st_blocks;
+#endif
st->st_atime = kbuf->st_atime_;
st->st_mtime = kbuf->st_mtime_;
st->st_ctime = kbuf->st_ctime_;