diff options
| author | Ilpo Järvinen <[email protected]> | 2008-01-04 04:38:05 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2008-01-28 23:00:33 +0000 |
| commit | 19773b4923ed0e21e3289361dba5e69e1ce6e00b (patch) | |
| tree | 78176d3819181de63ceeeff50b2cf5166d73c4b9 | |
| parent | [TCP]: cleanup tcp_parse_options deep indented switch (diff) | |
| download | kernel-19773b4923ed0e21e3289361dba5e69e1ce6e00b.tar.gz kernel-19773b4923ed0e21e3289361dba5e69e1ce6e00b.zip | |
[TCP]: Urgent parameter effect can be simplified.
Signed-off-by: Ilpo Järvinen <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
| -rw-r--r-- | net/ipv4/tcp_output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c index f6d279a95f4b..6c7cd0a9098a 100644 --- a/net/ipv4/tcp_output.c +++ b/net/ipv4/tcp_output.c @@ -2488,7 +2488,7 @@ static int tcp_xmit_probe_skb(struct sock *sk, int urgent) * end to send an ack. Don't queue or clone SKB, just * send it. */ - TCP_SKB_CB(skb)->seq = urgent ? tp->snd_una : tp->snd_una - 1; + TCP_SKB_CB(skb)->seq = tp->snd_una - !urgent; TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(skb)->seq; TCP_SKB_CB(skb)->when = tcp_time_stamp; return tcp_transmit_skb(sk, skb, 0, GFP_ATOMIC); |
