From 911f2dfe5658b09b6b55b2ffba060272c694922a Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Sun, 21 Apr 2019 11:17:27 +0200 Subject: [PATCH] shared: fix missing space printing "send-always" flag of NMTeamLinkWatcher --- shared/nm-libnm-core-aux/nm-libnm-core-aux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/nm-libnm-core-aux/nm-libnm-core-aux.c b/shared/nm-libnm-core-aux/nm-libnm-core-aux.c index bc9775b36b..8b443ec204 100644 --- a/shared/nm-libnm-core-aux/nm-libnm-core-aux.c +++ b/shared/nm-libnm-core-aux/nm-libnm-core-aux.c @@ -71,7 +71,7 @@ nm_utils_team_link_watcher_to_string (NMTeamLinkWatcher *watcher) if (flags & NM_TEAM_LINK_WATCHER_ARP_PING_FLAG_VALIDATE_INACTIVE) g_string_append_printf (w_dump, " validate-inactive=true"); if (flags & NM_TEAM_LINK_WATCHER_ARP_PING_FLAG_SEND_ALWAYS) - g_string_append_printf (w_dump, "send-always=true"); + g_string_append_printf (w_dump, " send-always=true"); return g_string_free (w_dump, FALSE); }