summaryrefslogtreecommitdiff
path: root/src/platform/tests/platform.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/platform/tests/platform.c')
-rw-r--r--src/platform/tests/platform.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/platform/tests/platform.c b/src/platform/tests/platform.c
index 469652c55f..a70d43601d 100644
--- a/src/platform/tests/platform.c
+++ b/src/platform/tests/platform.c
@@ -24,6 +24,7 @@
#include <arpa/inet.h>
#include <netlink/route/addr.h>
+#include "gsystem-local-alloc.h"
#include "nm-platform.h"
#include "nm-linux-platform.h"
#include "nm-fake-platform.h"
@@ -630,7 +631,7 @@ do_ip4_route_get_all (char **argv)
int i;
if (ifindex) {
- routes = nm_platform_ip4_route_get_all (ifindex, TRUE);
+ routes = nm_platform_ip4_route_get_all (ifindex, NM_PLATFORM_GET_ROUTE_MODE_ALL);
for (i = 0; i < routes->len; i++) {
route = &g_array_index (routes, NMPlatformIP4Route, i);
inet_ntop (AF_INET, &route->network, networkstr, sizeof (networkstr));
@@ -654,7 +655,7 @@ do_ip6_route_get_all (char **argv)
int i;
if (ifindex) {
- routes = nm_platform_ip6_route_get_all (ifindex, TRUE);
+ routes = nm_platform_ip6_route_get_all (ifindex, NM_PLATFORM_GET_ROUTE_MODE_ALL);
for (i = 0; i < routes->len; i++) {
route = &g_array_index (routes, NMPlatformIP6Route, i);
inet_ntop (AF_INET6, &route->network, networkstr, sizeof (networkstr));