2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-02 07:35:26 +00:00

Port needed cast to isc_uint16_t as it is a 16 bit quantity

This commit is contained in:
Danny Mayer
2002-08-01 03:28:01 +00:00
parent 977265bc5d
commit 8ef03ac274

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: nslookup.c,v 1.97 2002/07/25 05:46:07 marka Exp $ */ /* $Id: nslookup.c,v 1.98 2002/08/01 03:28:01 mayer Exp $ */
#include <config.h> #include <config.h>
@@ -539,7 +539,7 @@ set_port(const char *value) {
isc_uint32_t n; isc_uint32_t n;
isc_result_t result = parse_uint(&n, value, 65535, "port"); isc_result_t result = parse_uint(&n, value, 65535, "port");
if (result == ISC_R_SUCCESS) if (result == ISC_R_SUCCESS)
port = n; port = (isc_uint16_t) n;
} }
static void static void