summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgaoxingwang <gxw94linux@163.com>2022-10-12 09:32:19 +0800
committerThomas Haller <thaller@redhat.com>2022-10-12 15:41:48 +0200
commit2a0bbd788bf00b25b1fe0154e79730e27283132a (patch)
treed06bd8d8e18ecee862cd2af5b630592d10cdffb2
parent977787171e532d4143ab942494c06b5c632f822b (diff)
downloadNetworkManager-2a0bbd788bf00b25b1fe0154e79730e27283132a.tar.gz
nmcli: fix typo 'exiting' -> 'existing'
https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/issues/1115 https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/merge_requests/1424
-rw-r--r--src/nmcli/settings.c2
1 files changed, 1 insertions, 1 deletions
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;
}