From 2ff1d60bdc8e3635db0dc90482d0d2f9db653e9d Mon Sep 17 00:00:00 2001 From: Richard Sharpe Date: Thu, 16 Jan 2003 23:27:37 +0000 Subject: Fix an error where the SK Offset was truncated to 16 bits. Variables needed to be unsigned int (DWORD) not unsigned int (WORD). (This used to be commit e1e9c29c4095405d7031cfd618e06dd841075aad) --- source3/utils/profiles.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/utils') diff --git a/source3/utils/profiles.c b/source3/utils/profiles.c index 9424233e11..14b480cd16 100644 --- a/source3/utils/profiles.c +++ b/source3/utils/profiles.c @@ -537,7 +537,7 @@ int main(int argc, char *argv[]) HBIN_HDR *hbin_hdr; NK_HDR *nk_hdr; SK_HDR *sk_hdr; - WORD first_sk_off, sk_off; + DWORD first_sk_off, sk_off; MY_SEC_DESC *sec_desc; int *ptr; -- cgit