summaryrefslogtreecommitdiff
path: root/source3/libsmb
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-10-14 04:00:08 +0000
committerTim Potter <tpot@samba.org>2003-10-14 04:00:08 +0000
commitc06d6e0afe489fc13c0e5c5485fcf6f1298c52dc (patch)
tree2a3de0236b8c880384a7e916c6bd6ffd69b9c828 /source3/libsmb
parentf631ec52abfca33fea5fe2b04c42e0ca68b17359 (diff)
downloadsamba-c06d6e0afe489fc13c0e5c5485fcf6f1298c52dc.tar.gz
samba-c06d6e0afe489fc13c0e5c5485fcf6f1298c52dc.tar.bz2
samba-c06d6e0afe489fc13c0e5c5485fcf6f1298c52dc.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>. (This used to be commit 3d777f5389ed6b4ab8c42eb110d41f7df309bead)
Diffstat (limited to 'source3/libsmb')
-rw-r--r--source3/libsmb/libsmbclient.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/libsmb/libsmbclient.c b/source3/libsmb/libsmbclient.c
index 69c4d8f7a7..4eb7f49760 100644
--- a/source3/libsmb/libsmbclient.c
+++ b/source3/libsmb/libsmbclient.c
@@ -1139,8 +1139,12 @@ int smbc_setup_stat(SMBCCTX *context, struct stat *st, char *fname, size_t size,
if (!IS_DOS_READONLY(mode)) st->st_mode |= S_IWUSR;
st->st_size = size;
+#ifdef HAVE_STAT_ST_BLKSIZE
st->st_blksize = 512;
+#endif
+#ifdef HAVE_STAT_ST_BLOCKS
st->st_blocks = (size+511)/512;
+#endif
st->st_uid = getuid();
st->st_gid = getgid();