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

Make grouping in if statement more explicit.

Michael
This commit is contained in:
Michael Adam 2007-12-31 03:55:22 +01:00
parent 4a56d3d707
commit a1bb47695a

View File

@ -217,9 +217,11 @@ static int import_process_service(TALLOC_CTX *ctx,
while ((parm = lp_next_parameter(share->service, &pnum, 0)))
{
if ((share->service < 0 && parm->p_class == P_LOCAL)
if ((share->service < 0) && (parm->p_class == P_LOCAL)
&& !(parm->flags & FLAG_GLOBAL))
{
continue;
}
valstr = parm_valstr(tmp_ctx, parm, share);