mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
Make grouping in if statement more explicit.
Michael
This commit is contained in:
parent
4a56d3d707
commit
a1bb47695a
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user