byte swap the inet6 ports.

This commit is contained in:
christos 2012-03-24 21:51:23 +00:00
parent 006e190034
commit 0b08384416

View File

@ -1,4 +1,4 @@
/* $NetBSD: fstat.c,v 1.95 2011/10/09 21:16:00 chs Exp $ */ /* $NetBSD: fstat.c,v 1.96 2012/03/24 21:51:23 christos Exp $ */
/*- /*-
* Copyright (c) 1988, 1993 * Copyright (c) 1988, 1993
@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1988, 1993\
#if 0 #if 0
static char sccsid[] = "@(#)fstat.c 8.3 (Berkeley) 5/2/95"; static char sccsid[] = "@(#)fstat.c 8.3 (Berkeley) 5/2/95";
#else #else
__RCSID("$NetBSD: fstat.c,v 1.95 2011/10/09 21:16:00 chs Exp $"); __RCSID("$NetBSD: fstat.c,v 1.96 2012/03/24 21:51:23 christos Exp $");
#endif #endif
#endif /* not lint */ #endif /* not lint */
@ -974,9 +974,9 @@ socktrans(struct socket *sock, int i)
goto bad; goto bad;
} }
inet6_addrstr(lbuf, sizeof(lbuf), &in6pcb.in6p_laddr, inet6_addrstr(lbuf, sizeof(lbuf), &in6pcb.in6p_laddr,
in6pcb.in6p_lport); ntohs(in6pcb.in6p_lport));
inet6_addrstr(fbuf, sizeof(fbuf), &in6pcb.in6p_faddr, inet6_addrstr(fbuf, sizeof(fbuf), &in6pcb.in6p_faddr,
in6pcb.in6p_fport); ntohs(in6pcb.in6p_fport));
break; break;
default: default:
break; break;