r14922: Use BOOL for the returned value.
authorLars Müller <lmuelle@samba.org>
Wed, 5 Apr 2006 07:29:22 +0000 (07:29 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 16:15:54 +0000 (11:15 -0500)
(This used to be commit b228474be0ced2637272a7b614b92e412a118993)

source3/param/loadparm.c

index 7d3995f092ba5f51dfafda4e8915ab0a8a54eecc..95c095dcf23a02ce595c325edccb2eb0b84906a8 100644 (file)
@@ -3877,7 +3877,8 @@ static void dump_a_service(service * pService, FILE * f)
 BOOL dump_a_parameter(int snum, char *parm_name, FILE * f, BOOL isGlobal)
 {
        service * pService = ServicePtrs[snum];
-       int i, result = False;
+       int i;
+       BOOL result = False;
        parm_class p_class;
        unsigned flag = 0;
        fstring local_parm_name;