From: Jeremy Allison Date: Fri, 2 Mar 2007 20:56:18 +0000 (+0000) Subject: r21664: Fix #4425 - patch from Jason Mader . X-Git-Tag: samba-misc-tags/initial-v3-0-unstable~1007 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=24a4d4d7adefc4590f7e38cc72f54dc692cf9856;p=thirdparty%2Fsamba.git r21664: Fix #4425 - patch from Jason Mader . Jeremy --- diff --git a/source/modules/vfs_default.c b/source/modules/vfs_default.c index bd7bea5258a..c0b80e17754 100644 --- a/source/modules/vfs_default.c +++ b/source/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;