From 574daba7951b64b6b877db55a92e5a66f3354b4f Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 24 May 2006 06:36:17 +0000 Subject: r15851: the conversion of loadparm to BOOL broke all big-endian platforms as the service and global declarations were left as int. I tried to fix this initially by fixing the service declarations, but it didn't work. While I investigate why, this patch at least gets the use of int right, and should give big-endian platforms a chance (This used to be commit e12ae809eaf0a4c48ebb086615a9051b59996b5a) --- source4/param/loadparm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/param/loadparm.h') diff --git a/source4/param/loadparm.h b/source4/param/loadparm.h index 5e3bcea523..d439a435e6 100644 --- a/source4/param/loadparm.h +++ b/source4/param/loadparm.h @@ -51,7 +51,7 @@ struct parm_struct { const struct enum_list *enum_list; unsigned int flags; union { - BOOL bvalue; + int bvalue; int ivalue; char *svalue; char cvalue; -- cgit