Skip to content

Commit 48ca246

Browse files
committed
rxrpc: Don't set upgrade by default in sendmsg()
Don't set upgrade by default when creating a call from sendmsg(). This is a holdover from when I was testing the code. Signed-off-by: David Howells <[email protected]>
1 parent 03a6c82 commit 48ca246

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

net/rxrpc/sendmsg.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ int rxrpc_do_sendmsg(struct rxrpc_sock *rx, struct msghdr *msg, size_t len)
602602
.abort_code = 0,
603603
.command = RXRPC_CMD_SEND_DATA,
604604
.exclusive = false,
605-
.upgrade = true,
605+
.upgrade = false,
606606
};
607607

608608
_enter("");

0 commit comments

Comments
 (0)