[net.unix-wizards] htons should be ntohs

salkind@Nyu.ARPA (04/15/84)

From:  Lou Salkind <salkind@Nyu.ARPA>

Subject: htons should be ntohs (minor)
Index:	netinet/in_pcb.c 4.2BSD

Description:
	For form's sake, an htons() call in in_pcbbind should really be an
	ntohs() call.  (It really doesn't matter that much, as they do the
	same thing on most machines.)
Fix:
	The line (around 65) should read:
	
		u_short aport = ntohs(lport);