summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/nmcli/connections.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nmcli/connections.c b/src/nmcli/connections.c
index 221761da22..bb73bb4918 100644
--- a/src/nmcli/connections.c
+++ b/src/nmcli/connections.c
@@ -5246,6 +5246,11 @@ connection_warnings(NmCli *nmc, NMConnection *connection)
const GPtrArray *connections;
guint i, found;
const char *id;
+ const char *deprecated;
+
+ deprecated = _connection_check_deprecated(NM_CONNECTION(connection));
+ if (deprecated)
+ g_printerr(_("Warning: %s.\n"), deprecated);
connections = nm_client_get_connections(nmc->client);
if (!connections)