mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
Fix a bidirectional UDS connect check typo
The 54e70ec5eb
commit introduced a
bidirectional check that should have checked for mutual WRITE access
between two labels. Due to a typo the second check was incorrect.
Signed-off-by: Lukasz Pawelczyk <l.pawelczyk@samsung.com>
This commit is contained in:
parent
e95ef49b7f
commit
d01757904d
@ -3302,8 +3302,8 @@ static int smack_unix_stream_connect(struct sock *sock,
|
||||
rc = smk_bu_note("UDS connect", skp, okp->smk_known,
|
||||
MAY_WRITE, rc);
|
||||
if (rc == 0) {
|
||||
rc = smk_access(okp, okp->smk_known, MAY_WRITE, NULL);
|
||||
rc = smk_bu_note("UDS connect", okp, okp->smk_known,
|
||||
rc = smk_access(okp, skp->smk_known, MAY_WRITE, NULL);
|
||||
rc = smk_bu_note("UDS connect", okp, skp->smk_known,
|
||||
MAY_WRITE, rc);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user