From: Amitay Isaacs Date: Wed, 21 Dec 2011 03:08:02 +0000 (+1100) Subject: param: Fix the data type for bAvailable X-Git-Url: http://git.samba.org/?p=mat%2Fsamba.git;a=commitdiff_plain;h=cd772e9bd8b1607a171338845e0de305497c1c07 param: Fix the data type for bAvailable This causes the copy_service() to not copy bAvailable boolean on big endian machines causing tests to fail. Autobuild-User: Amitay Isaacs Autobuild-Date: Thu Dec 22 05:30:49 CET 2011 on sn-devel-104 --- diff --git a/lib/param/loadparm.h b/lib/param/loadparm.h index a50384d873..f0e747b00c 100644 --- a/lib/param/loadparm.h +++ b/lib/param/loadparm.h @@ -126,7 +126,7 @@ struct parm_struct { char *szService; \ char *szInclude; \ bool bWidelinks; \ - int bAvailable; \ + bool bAvailable; \ struct parmlist_entry *param_opt; \ struct bitmap *copymap; \ char dummy[3]; /* for alignment */