mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-29 10:20:11 +01:00
cli: fix output of iface in overview output
Fixes:f14845cc20https://bugzilla.redhat.com/show_bug.cgi?id=1460219 (cherry picked from commit126b0874f1)
This commit is contained in:
parent
6a4774b1a8
commit
be4e1000e8
1 changed files with 1 additions and 1 deletions
|
|
@ -1139,7 +1139,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