1
0
Fork 0

sctp: correctly save sctp_adaptation from parameter.

The INIT perameter carries the adapatation value in network-byte
order.  We need to store it in host byte order as expected
by data types and the user API.

Signed-off-by: Vlad Yasevich <vladislav.yasevich@hp.com>
wifi-calibration
Vlad Yasevich 2008-09-15 16:29:49 -04:00
parent 96cd0d3d71
commit e69c4e0f12
1 changed files with 1 additions and 1 deletions

View File

@ -2467,7 +2467,7 @@ do_addr_param:
break;
case SCTP_PARAM_ADAPTATION_LAYER_IND:
asoc->peer.adaptation_ind = param.aind->adaptation_ind;
asoc->peer.adaptation_ind = ntohl(param.aind->adaptation_ind);
break;
case SCTP_PARAM_SET_PRIMARY: