From: Volker Lendecke Date: Fri, 22 Jul 2022 17:17:29 +0000 (+0200) Subject: smbd: Fix the build on FreeBSD X-Git-Tag: samba-4.17.0rc1~72 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0b58dc38bb810cc2c5a516a8f4f3017d7812ee0a;p=thirdparty%2Fsamba.git smbd: Fix the build on FreeBSD Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/source3/smbd/statvfs.c b/source3/smbd/statvfs.c index 981e7a5ba79..03dacc4ccc7 100644 --- a/source3/smbd/statvfs.c +++ b/source3/smbd/statvfs.c @@ -76,7 +76,7 @@ static int darwin_fs_capabilities(const char * path) #endif /* DARWINOS */ #if defined(BSD_STYLE_STATVFS) -static int bsd_statvfs(const char *path, vfs_statvfs_struct *statbuf) +static int bsd_statvfs(const char *path, struct vfs_statvfs_struct *statbuf) { struct statfs sbuf; int ret;