From 6deb189abbc316deb57ecdc1242295d14b205cc9 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 2 Mar 2007 20:56:18 +0000 Subject: r21664: Fix #4425 - patch from Jason Mader . Jeremy (This used to be commit 24a4d4d7adefc4590f7e38cc72f54dc692cf9856) --- source3/modules/vfs_default.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'source3/modules') diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c index bd7bea5258..c0b80e1775 100644 --- a/source3/modules/vfs_default.c +++ b/source3/modules/vfs_default.c @@ -786,7 +786,7 @@ static BOOL vfswrap_getlock(vfs_handle_struct *handle, files_struct *fsp, int fd static int vfswrap_linux_setlease(vfs_handle_struct *handle, files_struct *fsp, int fd, int leasetype) { - int result; + int result = -1; START_PROFILE(syscall_linux_setlease); @@ -796,7 +796,8 @@ static int vfswrap_linux_setlease(vfs_handle_struct *handle, files_struct *fsp, return -1; result = linux_setlease(fd, leasetype); - +#else + errno = ENOSYS; #endif END_PROFILE(syscall_linux_setlease); return result; -- cgit