diff options
Diffstat (limited to 'net/sctp/sm_statetable.c')
-rw-r--r-- | net/sctp/sm_statetable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/sm_statetable.c b/net/sctp/sm_statetable.c index a4f17437fb22..a987d54b379c 100644 --- a/net/sctp/sm_statetable.c +++ b/net/sctp/sm_statetable.c | |||
@@ -69,7 +69,7 @@ static const sctp_sm_table_entry_t bug = { | |||
69 | if ((event_subtype._type > (_max))) { \ | 69 | if ((event_subtype._type > (_max))) { \ |
70 | pr_warn("table %p possible attack: event %d exceeds max %d\n", \ | 70 | pr_warn("table %p possible attack: event %d exceeds max %d\n", \ |
71 | _table, event_subtype._type, _max); \ | 71 | _table, event_subtype._type, _max); \ |
72 | rtn = &bug; \ | 72 | rtn = &bug; \ |
73 | } else \ | 73 | } else \ |
74 | rtn = &_table[event_subtype._type][(int)state]; \ | 74 | rtn = &_table[event_subtype._type][(int)state]; \ |
75 | \ | 75 | \ |