mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-26 02:25:00 -05:00
dlm: fix error return code in sctp_accept_from_sock()
Fix to return a negative error code from the error handling case instead of 0, as done elsewhere in this function. Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> Signed-off-by: David Teigland <teigland@redhat.com>
This commit is contained in:
parent
aa9f101285
commit
26c1ec2fe4
1 changed files with 2 additions and 1 deletions
|
@ -879,7 +879,8 @@ static int sctp_accept_from_sock(struct connection *con)
|
|||
}
|
||||
|
||||
make_sockaddr(&prim.ssp_addr, 0, &addr_len);
|
||||
if (addr_to_nodeid(&prim.ssp_addr, &nodeid)) {
|
||||
ret = addr_to_nodeid(&prim.ssp_addr, &nodeid);
|
||||
if (ret) {
|
||||
unsigned char *b = (unsigned char *)&prim.ssp_addr;
|
||||
|
||||
log_print("reject connect from unknown addr");
|
||||
|
|
Loading…
Add table
Reference in a new issue