summaryrefslogtreecommitdiff
path: root/source3/utils
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-06-16 11:21:07 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-06-16 11:21:07 +0000
commitd666280b0a64c61a19a824441b7903539f438900 (patch)
treed358222f0936fd838a9881d68cec8bf777aa5580 /source3/utils
parent36f7eaf32c40451d2e9cb9432491a1a03bf3780b (diff)
downloadsamba-d666280b0a64c61a19a824441b7903539f438900.tar.gz
samba-d666280b0a64c61a19a824441b7903539f438900.tar.bz2
samba-d666280b0a64c61a19a824441b7903539f438900.zip
Cope with the requirement for constant initialisers on some unix C compilers.
Andrew Bartlett (This used to be commit 11b6d283d3c1408c89b03918f3a0c034411f5966)
Diffstat (limited to 'source3/utils')
-rw-r--r--source3/utils/testparm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/testparm.c b/source3/utils/testparm.c
index b63fbf4145..1d48249a75 100644
--- a/source3/utils/testparm.c
+++ b/source3/utils/testparm.c
@@ -178,7 +178,7 @@ int main(int argc, char *argv[])
extern fstring local_machine;
const char *config_file = dyn_CONFIGFILE;
int s;
- BOOL silent_mode = False;
+ static BOOL silent_mode = False;
int ret = 0;
int opt;
poptContext pc;