From: Ulrich Drepper Date: Thu, 5 Aug 1999 01:04:14 +0000 (+0000) Subject: Remove htons, port is always in network-byte-order. X-Git-Tag: cvs/glibc_2-1-2~183 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3542d62676c840b0cf71d0ecb75f041208554ba7;p=thirdparty%2Fglibc.git Remove htons, port is always in network-byte-order. --- diff --git a/nis/nss_nis/nis-service.c b/nis/nss_nis/nis-service.c index 91bd65b22a8..571b4f32f6d 100644 --- a/nis/nss_nis/nis-service.c +++ b/nis/nss_nis/nis-service.c @@ -1,6 +1,6 @@ -/* Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Thorsten Kukuk , 1996. + Contributed by Thorsten Kukuk , 1996. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as @@ -270,8 +270,7 @@ _nss_nis_getservbyport_r (int port, char *protocol, struct servent *serv, while (!found && ((status = internal_nis_getservent_r (serv, buffer, buflen, errnop, &data)) == NSS_STATUS_SUCCESS)) - if (htons (serv->s_port) == port - && strcmp (serv->s_proto, protocol) == 0) + if (serv->s_port == port && strcmp (serv->s_proto, protocol) == 0) found = 1; internal_nis_endservent (&data);