diff options
author | David Howells <dhowells@redhat.com> | 2016-09-17 12:49:12 +0300 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2016-09-17 12:54:21 +0300 |
commit | 2311e327cda015a24a201efc7655a9a983679e55 (patch) | |
tree | f3678290808cac0ce535bb53876e2350d2bd454a /net/rxrpc | |
parent | 27d0fc431c6b4847231c1490fa541bc3f5a7a351 (diff) | |
download | linux-2311e327cda015a24a201efc7655a9a983679e55.tar.xz |
rxrpc: Be consistent about switch value in rxrpc_send_call_packet()
rxrpc_send_call_packet() should use type in both its switch-statements
rather than using pkt->whdr.type. This might give the compiler an easier
job of uninitialised variable checking.
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'net/rxrpc')
-rw-r--r-- | net/rxrpc/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rxrpc/output.c b/net/rxrpc/output.c index aa0507214b31..0b21ed859de7 100644 --- a/net/rxrpc/output.c +++ b/net/rxrpc/output.c @@ -182,7 +182,7 @@ int rxrpc_send_call_packet(struct rxrpc_call *call, u8 type) &msg, iov, ioc, len); if (ret < 0 && call->state < RXRPC_CALL_COMPLETE) { - switch (pkt->whdr.type) { + switch (type) { case RXRPC_PACKET_TYPE_ACK: rxrpc_propose_ACK(call, pkt->ack.reason, ntohs(pkt->ack.maxSkew), |