mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-04-14 22:50:46 +02:00
cli: fix output of iface in overview output
Fixes: f14845cc20
https://bugzilla.redhat.com/show_bug.cgi?id=1460219
This commit is contained in:
parent
aa099906f9
commit
126b0874f1
1 changed files with 1 additions and 1 deletions
|
|
@ -1197,7 +1197,7 @@ device_overview (NmCli *nmc, NMDevice *device)
|
|||
if ( nm_device_get_ip_iface (device)
|
||||
&& g_strcmp0 (nm_device_get_ip_iface (device), nm_device_get_iface (device))
|
||||
&& g_strcmp0 (nm_device_get_ip_iface (device), ""))
|
||||
g_string_append_printf (outbuf, "%s %s,", _("iface"), nm_device_get_ip_iface (device));
|
||||
g_string_append_printf (outbuf, "%s %s, ", _("iface"), nm_device_get_ip_iface (device));
|
||||
|
||||
if (nm_device_get_physical_port_id (device))
|
||||
g_string_append_printf (outbuf, "%s %s, ", _("port"), nm_device_get_physical_port_id (device));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue