From 858cdd54bdc38015806958dcf44efde2255714a7 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 24 Apr 2003 03:55:22 +0000 Subject: Patch from Guenther Deschner to fix build with gcc 3.2 (This used to be commit f56a18853235e9090fbf962aa981688dc2e15426) --- source3/smbwrapper/smbw.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source3') diff --git a/source3/smbwrapper/smbw.c b/source3/smbwrapper/smbw.c index 005d9af53f..7eb01c7da3 100644 --- a/source3/smbwrapper/smbw.c +++ b/source3/smbwrapper/smbw.c @@ -1512,11 +1512,11 @@ struct kernel_stat { unsigned long int st_size; unsigned long int st_blksize; unsigned long int st_blocks; - unsigned long int st_atime; + unsigned long int st_atime_; unsigned long int __unused1; - unsigned long int st_mtime; + unsigned long int st_mtime_; unsigned long int __unused2; - unsigned long int st_ctime; + unsigned long int st_ctime_; unsigned long int __unused3; unsigned long int __unused4; unsigned long int __unused5; @@ -1547,8 +1547,8 @@ struct kernel_stat { st->st_size = kbuf->st_size; st->st_blksize = kbuf->st_blksize; st->st_blocks = kbuf->st_blocks; - st->st_atime = kbuf->st_atime; - st->st_mtime = kbuf->st_mtime; - st->st_ctime = kbuf->st_ctime; + st->st_atime = kbuf->st_atime_; + st->st_mtime = kbuf->st_mtime_; + st->st_ctime = kbuf->st_ctime_; } #endif -- cgit