1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

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 <amitay@samba.org>
Autobuild-Date: Thu Dec 22 05:30:49 CET 2011 on sn-devel-104
This commit is contained in:
Amitay Isaacs 2011-12-21 14:08:02 +11:00 committed by Amitay Isaacs
parent a42de3b5f0
commit cd772e9bd8

View File

@ -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 */