summaryrefslogtreecommitdiffstats
path: root/source/locking/posix.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-04-13 14:08:51 +0000
committerAndrew Tridgell <tridge@samba.org>2001-04-13 14:08:51 +0000
commitb703659d05a6e5d2ab9a283fdf7373f6095fd9dd (patch)
treef363eafd55c9ba7a8b8cf9e33775f73e5ab73461 /source/locking/posix.c
parentbc103e2bb2427b7c19a6f3e92da429f3b9f7a9dd (diff)
downloadsamba-b703659d05a6e5d2ab9a283fdf7373f6095fd9dd.tar.gz
samba-b703659d05a6e5d2ab9a283fdf7373f6095fd9dd.tar.xz
samba-b703659d05a6e5d2ab9a283fdf7373f6095fd9dd.zip
need map_lock_offset in reply.c for systems without a 64 bit integer
Diffstat (limited to 'source/locking/posix.c')
-rw-r--r--source/locking/posix.c2
1 files changed, 1 insertions, 1 deletions
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;