[SCTP]: Set correct error cause value for missing parameters

sctp_process_missing_param() needs to use the SCTP_ERROR_MISS_PARAM
error cause value.

Signed-off-by: Vlad Yasevich <vladislav.yasevich@hp.com>
Signed-off-by: Sridhar Samudrala <sri@us.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Vlad Yasevich 2007-01-15 19:12:31 -08:00 committed by David S. Miller
parent 16d807988f
commit ebdfcad4dc

View file

@ -1562,7 +1562,7 @@ static int sctp_process_missing_param(const struct sctp_association *asoc,
if (*errp) { if (*errp) {
report.num_missing = htonl(1); report.num_missing = htonl(1);
report.type = paramtype; report.type = paramtype;
sctp_init_cause(*errp, SCTP_ERROR_INV_PARAM, sctp_init_cause(*errp, SCTP_ERROR_MISS_PARAM,
&report, sizeof(report)); &report, sizeof(report));
} }