diff options
Diffstat (limited to 'source/param/params.c')
-rw-r--r-- | source/param/params.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/param/params.c b/source/param/params.c index a7d50601768..a1f9e6bc23c 100644 --- a/source/param/params.c +++ b/source/param/params.c @@ -272,7 +272,7 @@ static BOOL Section( myFILE *InFile, BOOL (*sfunc)(char *) ) DEBUG(0, ("%s Empty section name in configuration file.\n", func )); return( False ); } - if( !sfunc( unix_to_dos(bufr,True) ) ) /* Got a valid name. Deal with it. */ + if( !sfunc( unix_to_dos(bufr) ) ) /* Got a valid name. Deal with it. */ return( False ); (void)EatComment( InFile ); /* Finish off the line. */ return( True ); |