summaryrefslogtreecommitdiff
path: root/source3/locking
diff options
context:
space:
mode:
Diffstat (limited to 'source3/locking')
-rw-r--r--source3/locking/posix.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/source3/locking/posix.c b/source3/locking/posix.c
index fbdcf662fc..75fc6272b5 100644
--- a/source3/locking/posix.c
+++ b/source3/locking/posix.c
@@ -632,12 +632,11 @@ static BOOL posix_lock_in_range(SMB_OFF_T *offset_out, SMB_OFF_T *count_out,
return True;
}
-#if defined(LARGE_SMB_OFF_T)
/****************************************************************************
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;
@@ -664,7 +663,6 @@ static uint32 map_lock_offset(uint32 high, uint32 low)
return (high|low);
}
-#endif
/****************************************************************************
Actual function that does POSIX locks. Copes with 64 -> 32 bit cruft and