From 2a0bbd788bf00b25b1fe0154e79730e27283132a Mon Sep 17 00:00:00 2001 From: gaoxingwang Date: Wed, 12 Oct 2022 09:32:19 +0800 Subject: [PATCH] nmcli: fix typo 'exiting' -> 'existing' https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/issues/1115 https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/merge_requests/1424 --- src/nmcli/settings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nmcli/settings.c b/src/nmcli/settings.c index d6c36ac023..8cc151ba21 100644 --- a/src/nmcli/settings.c +++ b/src/nmcli/settings.c @@ -385,7 +385,7 @@ _set_fcn_precheck_connection_secondaries(NMClient *client, } else { con = nmc_find_connection(connections, "id", *iter, NULL, FALSE); if (!con) { - g_set_error(error, 1, 0, _("'%s' is not a name of any exiting profile"), *iter); + g_set_error(error, 1, 0, _("'%s' is not a name of any existing profile"), *iter); return FALSE; }