diff options
| author | Dan Carpenter <[email protected]> | 2023-09-13 09:36:29 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2023-09-15 12:55:50 +0000 |
| commit | 4fa5ce3e3a10da4ecc438a548fc701dec5f28758 (patch) | |
| tree | 7cfdf8612c0ff75b83a730a0766ff0a7a0573795 /net/ipv4/tcp_timer.c | |
| parent | Merge branch 'icssg-half-duplex-support' (diff) | |
| download | kernel-4fa5ce3e3a10da4ecc438a548fc701dec5f28758.tar.gz kernel-4fa5ce3e3a10da4ecc438a548fc701dec5f28758.zip | |
tcp: indent an if statement
Indent this if statement one tab.
Signed-off-by: Dan Carpenter <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/ipv4/tcp_timer.c')
| -rw-r--r-- | net/ipv4/tcp_timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_timer.c b/net/ipv4/tcp_timer.c index 984ab4a0421e..d7d64682b068 100644 --- a/net/ipv4/tcp_timer.c +++ b/net/ipv4/tcp_timer.c @@ -394,7 +394,7 @@ static void tcp_probe_timer(struct sock *sk) if (user_timeout && (s32)(tcp_jiffies32 - icsk->icsk_probes_tstamp) >= msecs_to_jiffies(user_timeout)) - goto abort; + goto abort; } max_probes = READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_retries2); if (sock_flag(sk, SOCK_DEAD)) { |
