From e8a197506cf61161397d8f67304d89187ebbd26d Mon Sep 17 00:00:00 2001 From: Andrew Zaborowski Date: Tue, 12 Jun 2018 05:59:20 +0200 Subject: [PATCH] client: cli: Fix message in connect callback https://github.com/NetworkManager/NetworkManager/pull/134 --- clients/cli/devices.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/cli/devices.c b/clients/cli/devices.c index b99e606a96..81f11415d4 100644 --- a/clients/cli/devices.c +++ b/clients/cli/devices.c @@ -1725,7 +1725,7 @@ add_and_activate_cb (GObject *client, if (state == NM_ACTIVE_CONNECTION_STATE_ACTIVATED) { if (nmc->nmc_config.print_output == NMC_PRINT_PRETTY) nmc_terminal_erase_line (); - if (info->hotspot) + if (!info->hotspot) g_print (_("Connection with UUID '%s' created and activated on device '%s'\n"), nm_active_connection_get_uuid (active), nm_device_get_iface (device)); else