From e18a2cad693c94c2c98f00710150dcb36c55db90 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 13 Jan 2000 12:05:40 +0000 Subject: defined br_off as a type for byte range offsets. For now I've set it as SMB_OFF_T, we need to do some autoconf changes to generate a 64 bit int whenever possible (eg. long long on 32 bit i386) (This used to be commit 09dbe8bccec244c8ea0893a7d8ca4fe85d5420f7) --- source3/include/includes.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source3/include/includes.h b/source3/include/includes.h index 4177189d6e..b618178c5f 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -491,6 +491,9 @@ # endif #endif +/* this should really be a 64 bit type if possible */ +#define br_off SMB_OFF_T + #define SMB_OFF_T_BITS (sizeof(SMB_OFF_T)*8) /* -- cgit