mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-07 06:08:02 +02:00
ovs: fix _external_ids_to_string() to print strdict in logging
Fixes:a4b13d5069('core/ovs: log external-ids of Interfaces/Ports/Bridges') (cherry picked from commit17e16c8fa6)
This commit is contained in:
parent
83327bfc58
commit
fbc48c3612
1 changed files with 2 additions and 2 deletions
|
|
@ -1579,9 +1579,9 @@ _external_ids_to_string(const GArray *arr)
|
||||||
|
|
||||||
if (i > 0)
|
if (i > 0)
|
||||||
nm_str_buf_append_c(&strbuf, ',');
|
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);
|
return nm_str_buf_finalize(&strbuf, NULL);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue