forked from Minki/linux
Staging: dst: Fix parentheses
`|' has a higher precedence than `?' so since MSG_WAITALL is defined 0x100, MSG_MORE was always written to the msg_flag. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Acked-by: Evgeniy Polyakov <zbr@ioremap.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
a5c330fe8b
commit
6c8e49dd41
@ -121,7 +121,7 @@ int dst_data_send_header(struct socket *sock,
|
||||
msg.msg_namelen = 0;
|
||||
msg.msg_control = NULL;
|
||||
msg.msg_controllen = 0;
|
||||
msg.msg_flags = MSG_WAITALL | (more)?MSG_MORE:0;
|
||||
msg.msg_flags = MSG_WAITALL | (more ? MSG_MORE : 0);
|
||||
|
||||
err = kernel_sendmsg(sock, &msg, &iov, 1, iov.iov_len);
|
||||
if (err != size) {
|
||||
|
Loading…
Reference in New Issue
Block a user