Change two occurrences of HTONS() to use htons().

This commit is contained in:
Mike Barcroft 2002-02-28 09:56:31 +00:00
parent 3301d20ad9
commit 27aba6a42a

View File

@ -297,8 +297,8 @@ ip_t *ip;
#else
# if defined(BSD) && !defined(sparc) && (BSD >= 199306)
if (!fin->fin_out) {
HTONS(ip->ip_len);
HTONS(ip->ip_off);
ip->ip_len = htons(ip->ip_len);
ip->ip_off = htons(ip->ip_off);
}
# endif
fr_authpkts[i] = m;