diff options
Diffstat (limited to 'clients/cli/settings.c')
-rw-r--r-- | clients/cli/settings.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clients/cli/settings.c b/clients/cli/settings.c index 0487fb9680..c5c79f0987 100644 --- a/clients/cli/settings.c +++ b/clients/cli/settings.c @@ -338,7 +338,7 @@ _set_fcn_precheck_connection_secondaries (NMClient *client, g_print (_("Warning: %s is not an UUID of any existing connection profile\n"), *iter); } else { - /* Currently NM only supports VPN connections as secondaries */ + /* Currently, NM only supports VPN connections as secondaries */ if (!nm_connection_is_type (con, NM_SETTING_VPN_SETTING_NAME)) { g_set_error (error, 1, 0, _("'%s' is not a VPN connection profile"), *iter); return FALSE; @@ -351,7 +351,7 @@ _set_fcn_precheck_connection_secondaries (NMClient *client, return FALSE; } - /* Currently NM only supports VPN connections as secondaries */ + /* Currently, NM only supports VPN connections as secondaries */ if (!nm_connection_is_type (con, NM_SETTING_VPN_SETTING_NAME)) { g_set_error (error, 1, 0, _("'%s' is not a VPN connection profile"), *iter); return FALSE; |