diff -Naurp net-tools-1.60_p20141019041918.orig/lib/ipx_gr.c net-tools-1.60_p20141019041918/lib/ipx_gr.c --- net-tools-1.60_p20141019041918.orig/lib/ipx_gr.c 2014-10-19 00:19:18.000000000 -0400 +++ net-tools-1.60_p20141019041918/lib/ipx_gr.c 2014-10-20 03:48:49.392698846 -0400 @@ -72,7 +72,7 @@ int IPX_rprint(int options) continue; /* Fetch and resolve the Destination */ - (void) ap->input(5, net, &sa); + (void) ap->input(1, net, &sa); safe_strncpy(net, ap->sprint(&sa, numeric), sizeof(net)); /* Fetch and resolve the Router Net */ diff -Naurp net-tools-1.60_p20141019041918.orig/netstat.c net-tools-1.60_p20141019041918/netstat.c --- net-tools-1.60_p20141019041918.orig/netstat.c 2014-10-19 00:19:18.000000000 -0400 +++ net-tools-1.60_p20141019041918/netstat.c 2014-10-20 03:48:30.362698774 -0400 @@ -1649,13 +1649,13 @@ static int ipx_info(void) } /* Fetch and resolve the Source */ - (void) ap->input(4, sad, &sa); + (void) ap->input(0, sad, &sa); safe_strncpy(buf, ap->sprint(&sa, flag_not & FLAG_NUM_HOST), sizeof(buf)); snprintf(sad, sizeof(sad), "%s:%04X", buf, sport); if (!nc) { /* Fetch and resolve the Destination */ - (void) ap->input(4, dad, &sa); + (void) ap->input(0, dad, &sa); safe_strncpy(buf, ap->sprint(&sa, flag_not & FLAG_NUM_HOST), sizeof(buf)); snprintf(dad, sizeof(dad), "%s:%04X", buf, dport); } else