]> git.ipfire.org Git - people/amarx/ipfire-3.x.git/blob - net-tools/patches/002-net-tools-ipx.patch
ntp: Install ntpd with the Base group and enable by default
[people/amarx/ipfire-3.x.git] / net-tools / patches / 002-net-tools-ipx.patch
1 diff -up net-tools-2.0/lib/ipx_gr.c.ipx net-tools-2.0/lib/ipx_gr.c
2 --- net-tools-2.0/lib/ipx_gr.c.ipx 2013-09-10 12:33:52.494047907 +0200
3 +++ net-tools-2.0/lib/ipx_gr.c 2013-09-10 12:34:28.531561603 +0200
4 @@ -72,7 +72,7 @@ int IPX_rprint(int options)
5 continue;
6
7 /* Fetch and resolve the Destination */
8 - (void) ap->input(5, net, &sa);
9 + (void) ap->input(1, net, &sa);
10 safe_strncpy(net, ap->sprint(&sa, numeric), sizeof(net));
11
12 /* Fetch and resolve the Router Net */
13 diff -up net-tools-2.0/netstat.c.ipx net-tools-2.0/netstat.c
14 --- net-tools-2.0/netstat.c.ipx 2013-09-10 12:33:52.491047948 +0200
15 +++ net-tools-2.0/netstat.c 2013-09-10 12:33:52.495047894 +0200
16 @@ -1643,13 +1643,13 @@ static int ipx_info(void)
17 }
18
19 /* Fetch and resolve the Source */
20 - (void) ap->input(4, sad, &sa);
21 + (void) ap->input(0, sad, &sa);
22 safe_strncpy(buf, ap->sprint(&sa, flag_not & FLAG_NUM_HOST), sizeof(buf));
23 snprintf(sad, sizeof(sad), "%s:%04X", buf, sport);
24
25 if (!nc) {
26 /* Fetch and resolve the Destination */
27 - (void) ap->input(4, dad, &sa);
28 + (void) ap->input(0, dad, &sa);
29 safe_strncpy(buf, ap->sprint(&sa, flag_not & FLAG_NUM_HOST), sizeof(buf));
30 snprintf(dad, sizeof(dad), "%s:%04X", buf, dport);
31 } else