From 17131bb446e6dac01a71f2001a6304c4ef2cd18c Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Sun, 2 Nov 2003 04:14:25 +0000 Subject: Whoops - missed a place where HAVE_STAT_ST_{BLOCKS,BLOCKSIZE} guards should be present. (This used to be commit 08aa3f712c193aac5ad3d30e720c218c642738c0) --- source3/smbwrapper/smbw_stat.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source3/smbwrapper/smbw_stat.c b/source3/smbwrapper/smbw_stat.c index 6c476a8a67..bb76ef006a 100644 --- a/source3/smbwrapper/smbw_stat.c +++ b/source3/smbwrapper/smbw_stat.c @@ -41,8 +41,12 @@ void smbw_setup_stat(struct stat *st, char *fname, size_t size, int mode) 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(); if (IS_DOS_DIR(mode)) { -- cgit