diff options
author | David S. Miller <davem@davemloft.net> | 2011-05-12 19:26:57 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-05-12 19:26:57 -0400 |
commit | 10949550bd1e50cc91c0f5085f7080a44b0871fe (patch) | |
tree | e5a1862145c488c6abf9d12cc52a1db90481823d /net/ipv4/ip_options.c | |
parent | b2a103e6d0afa432dff66b36473c5a55b6b0376c (diff) |
ipv4: Kill spurious opt->srr check in ip_options_rcv_srr().
All call sites conditionalize the call to ip_options_rcv_srr()
with a check of opt->srr, so no need to check it again there.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/ip_options.c')
-rw-r--r-- | net/ipv4/ip_options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ip_options.c b/net/ipv4/ip_options.c index 01fc40965848..e82c304806bb 100644 --- a/net/ipv4/ip_options.c +++ b/net/ipv4/ip_options.c @@ -601,7 +601,7 @@ int ip_options_rcv_srr(struct sk_buff *skb) unsigned long orefdst; int err; - if (!opt->srr || !rt) + if (!rt) return 0; if (skb->pkt_type != PACKET_HOST) |