From cd772e9bd8b1607a171338845e0de305497c1c07 Mon Sep 17 00:00:00 2001 From: Amitay Isaacs Date: Wed, 21 Dec 2011 14:08:02 +1100 Subject: [PATCH] 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 --- lib/param/loadparm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/param/loadparm.h b/lib/param/loadparm.h index a50384d873c..f0e747b00cc 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 */ -- 2.34.1