1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-18 17:57:55 +03:00

#ifdef out function when not used.

Jeremy.
This commit is contained in:
Jeremy Allison -
parent 3811b6a9eb
commit fa8d626a27

View File

@ -4041,6 +4041,7 @@ SMB_BIG_UINT get_lock_count( char *data, int data_offset, BOOL large_file_format
return count;
}
#if !defined(HAVE_LONGLONG)
/****************************************************************************
Pathetically try and map a 64 bit lock offset into 31 bits. I hate Windows :-).
****************************************************************************/
@ -4072,6 +4073,7 @@ static uint32 map_lock_offset(uint32 high, uint32 low)
return (high|low);
}
#endif /* !defined(HAVE_LONGLONG) */
/****************************************************************************
Get a lock offset, dealing with large offset requests.