Skip to content

Commit

Permalink
rxrpc: Don't set upgrade by default in sendmsg()
Browse files Browse the repository at this point in the history
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 <dhowells@redhat.com>
  • Loading branch information
dhowells committed Nov 24, 2017
1 parent 03a6c82 commit 48ca246
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/rxrpc/sendmsg.c
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ int rxrpc_do_sendmsg(struct rxrpc_sock *rx, struct msghdr *msg, size_t len)
.abort_code = 0,
.command = RXRPC_CMD_SEND_DATA,
.exclusive = false,
.upgrade = true,
.upgrade = false,
};

_enter("");
Expand Down

0 comments on commit 48ca246

Please sign in to comment.