summaryrefslogtreecommitdiffstats
path: root/source/smbd/reply.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2000-04-12 21:46:22 +0000
committerJeremy Allison <jra@samba.org>2000-04-12 21:46:22 +0000
commit9c3b9146a3baff4b2e403ae8fac6c48df1b7e642 (patch)
treea722daa8154c0b01981af4d22994db6f28bdc82d /source/smbd/reply.c
parentdb96f83e34a139f47776fcbb5c1624fbf9d9943b (diff)
downloadsamba-9c3b9146a3baff4b2e403ae8fac6c48df1b7e642.tar.gz
samba-9c3b9146a3baff4b2e403ae8fac6c48df1b7e642.tar.xz
samba-9c3b9146a3baff4b2e403ae8fac6c48df1b7e642.zip
Implmented mapping of lock offset/count from 64 bit MS ranges
to either 63 or 31 bit POSIX ranges. Code to get these locks not yet added. Jeremy.
Diffstat (limited to 'source/smbd/reply.c')
-rw-r--r--source/smbd/reply.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/reply.c b/source/smbd/reply.c
index 96149acaa1c..b280b07f7cd 100644
--- a/source/smbd/reply.c
+++ b/source/smbd/reply.c
@@ -4073,7 +4073,7 @@ SMB_BIG_UINT get_lock_offset( char *data, int data_offset, BOOL large_file_forma
}
offset = (SMB_BIG_UINT)IVAL(data,SMB_LARGE_LKOFF_OFFSET_LOW(data_offset));
-#endif /* LARGE_SMB_OFF_T */
+#endif /* HAVE_LONGLONG */
}
return offset;