From 14c134e8316687aa5a4ee089c2acfa6428faceae Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 18 Sep 1998 00:30:28 +0000 Subject: include/includes.h: lib/system.c: Can't assume every system has a statvfs varient. Return -1 for those that don't. smbd/reply.c: Fixed printf warning. Jeremy. --- source/lib/system.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source/lib/system.c') diff --git a/source/lib/system.c b/source/lib/system.c index 18e84d66f05..52be504c528 100644 --- a/source/lib/system.c +++ b/source/lib/system.c @@ -186,8 +186,10 @@ int sys_statvfs( const char *path, SMB_STRUCT_STATVFS *fsd) { #if defined(STAT_STATVFS64) return statvfs64(path, fsd); -#else +#elif defined(STAT_STATVFS) return statvfs(path, fsd); +#else + return -1; #endif } -- cgit