Skip to content

Commit 535101e

Browse files
ArvindYadavCshorms
authored andcommitted
netfilter: ipvs: Fix space before '[' error.
Fix checkpatch.pl error: ERROR: space prohibited before open square bracket '['. Signed-off-by: Arvind Yadav <[email protected]> Signed-off-by: Simon Horman <[email protected]>
1 parent 159f029 commit 535101e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

net/netfilter/ipvs/ip_vs_proto_tcp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ static bool tcp_state_active(int state)
436436
return tcp_state_active_table[state];
437437
}
438438

439-
static struct tcp_states_t tcp_states [] = {
439+
static struct tcp_states_t tcp_states[] = {
440440
/* INPUT */
441441
/* sNO, sES, sSS, sSR, sFW, sTW, sCL, sCW, sLA, sLI, sSA */
442442
/*syn*/ {{sSR, sES, sES, sSR, sSR, sSR, sSR, sSR, sSR, sSR, sSR }},
@@ -459,7 +459,7 @@ static struct tcp_states_t tcp_states [] = {
459459
/*rst*/ {{sCL, sCL, sCL, sSR, sCL, sCL, sCL, sCL, sLA, sLI, sCL }},
460460
};
461461

462-
static struct tcp_states_t tcp_states_dos [] = {
462+
static struct tcp_states_t tcp_states_dos[] = {
463463
/* INPUT */
464464
/* sNO, sES, sSS, sSR, sFW, sTW, sCL, sCW, sLA, sLI, sSA */
465465
/*syn*/ {{sSR, sES, sES, sSR, sSR, sSR, sSR, sSR, sSR, sSR, sSA }},

0 commit comments

Comments
 (0)