mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-06 10:50:14 +01:00
ovs: fix _external_ids_to_string() to print strdict in logging
Fixes: a4b13d5069 ('core/ovs: log external-ids of Interfaces/Ports/Bridges')
This commit is contained in:
parent
f79ecbd34a
commit
17e16c8fa6
1 changed files with 2 additions and 2 deletions
|
|
@ -1592,9 +1592,9 @@ _external_ids_to_string(const GArray *arr)
|
|||
|
||||
if (i > 0)
|
||||
nm_str_buf_append_c(&strbuf, ',');
|
||||
nm_str_buf_append_printf(&strbuf, " \"%s\" = \"%s\"]", n->name, n->value_str);
|
||||
nm_str_buf_append_printf(&strbuf, " \"%s\" = \"%s\" ", n->name, n->value_str);
|
||||
}
|
||||
nm_str_buf_append(&strbuf, " ]");
|
||||
nm_str_buf_append(&strbuf, "]");
|
||||
|
||||
return nm_str_buf_finalize(&strbuf, NULL);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue