diff options
author | Wei Yongjun <yjwei@cn.fujitsu.com> | 2008-01-28 20:58:46 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-31 19:27:09 -0800 |
commit | ec9dbb1c3ee785ddc0c327497df42c16188d1fd8 (patch) | |
tree | 3ed1bc21faf5e1ccc607b37229bd9e11ed28a26d | |
parent | 8cf8e5a67fb07f583aac94482ba51a7930dab493 (diff) | |
download | op-kernel-dev-ec9dbb1c3ee785ddc0c327497df42c16188d1fd8.zip op-kernel-dev-ec9dbb1c3ee785ddc0c327497df42c16188d1fd8.tar.gz |
[SCTP]: Fix miss of report unrecognized HMAC Algorithm parameter
This patch fix miss of check for report unrecognized HMAC Algorithm
parameter. When AUTH is disabled, goto fall through path to report
unrecognized parameter, else, just break
Signed-off-by: Wei Yongjun <yjwei@cn.fujitsu.com>
Acked-by: Neil Horman <nhorman@tuxdriver.com>
Acked-by: Vlad Yasevich <vladislav.yasevich@hp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/sctp/sm_make_chunk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/sm_make_chunk.c b/net/sctp/sm_make_chunk.c index dd98763..77383e9 100644 --- a/net/sctp/sm_make_chunk.c +++ b/net/sctp/sm_make_chunk.c @@ -2056,7 +2056,7 @@ static sctp_ierror_t sctp_verify_param(const struct sctp_association *asoc, break; case SCTP_PARAM_HMAC_ALGO: - if (!sctp_auth_enable) + if (sctp_auth_enable) break; /* Fall Through */ fallthrough: |