From b703659d05a6e5d2ab9a283fdf7373f6095fd9dd Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 13 Apr 2001 14:08:51 +0000 Subject: need map_lock_offset in reply.c for systems without a 64 bit integer --- source/locking/posix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/locking/posix.c b/source/locking/posix.c index fbdcf662fc9..861bcc77fe5 100644 --- a/source/locking/posix.c +++ b/source/locking/posix.c @@ -637,7 +637,7 @@ static BOOL posix_lock_in_range(SMB_OFF_T *offset_out, SMB_OFF_T *count_out, Pathetically try and map a 64 bit lock offset into 31 bits. I hate Windows :-). ****************************************************************************/ -static uint32 map_lock_offset(uint32 high, uint32 low) +uint32 map_lock_offset(uint32 high, uint32 low) { unsigned int i; uint32 mask = 0; -- cgit