From 3294e06c28ccd02ff3ea4ec716d9617f4d313133 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Sat, 16 Jan 2016 13:42:47 +0100 Subject: [PATCH] platform: add "link" scope to nm_platform_route_scope2str() --- src/platform/nm-platform.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/platform/nm-platform.c b/src/platform/nm-platform.c index 5bb9a29028..65acf35a0a 100644 --- a/src/platform/nm-platform.c +++ b/src/platform/nm-platform.c @@ -3456,6 +3456,9 @@ nm_platform_route_scope2str (int scope, char *buf, gsize len) case 254: g_snprintf (buf, len, "host"); break; + case 253: + g_snprintf (buf, len, "link"); + break; case 200: g_snprintf (buf, len, "site"); break;