Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!watmath!clyde!akgua!mcnc!decvax!harpo!ihnp4!zehntel!hplabs!sri-unix!salkind@Nyu.ARPA From: salkind@Nyu.ARPA Newsgroups: net.unix-wizards Subject: htons should be ntohs (minor) Message-ID: <12292@sri-arpa.UUCP> Date: Sun, 15-Apr-84 15:01:16 EST Article-I.D.: sri-arpa.12292 Posted: Sun Apr 15 15:01:16 1984 Date-Received: Mon, 23-Apr-84 01:49:01 EST Lines: 13 From: Lou Salkind 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);