shared: fix missing space printing "send-always" flag of NMTeamLinkWatcher

This commit is contained in:
Thomas Haller 2019-04-21 11:17:27 +02:00
parent db9fbcee6c
commit 911f2dfe56

View file

@ -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);
}