summaryrefslogtreecommitdiff
path: root/source4/param/loadparm.h
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2006-05-24 06:36:17 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:08:32 -0500
commit574daba7951b64b6b877db55a92e5a66f3354b4f (patch)
treedca7ba77a419ee00c5dead30e04d0bc32b5dccb0 /source4/param/loadparm.h
parent3372344ade7e2610b8ba7d3175465656847affd7 (diff)
downloadsamba-574daba7951b64b6b877db55a92e5a66f3354b4f.tar.gz
samba-574daba7951b64b6b877db55a92e5a66f3354b4f.tar.bz2
samba-574daba7951b64b6b877db55a92e5a66f3354b4f.zip
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)
Diffstat (limited to 'source4/param/loadparm.h')
-rw-r--r--source4/param/loadparm.h2
1 files changed, 1 insertions, 1 deletions
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;