mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-05 00:38:07 +02:00
settings/d-bus: fix boolean return value of "LoadConnections"
The boolean value is intended to indicate success. It would indicated failure due to a bug. Fixes:297d4985ab('core/dbus: rework D-Bus implementation to use lower layer GDBusConnection API'): (cherry picked from commit22e830f046)
This commit is contained in:
parent
c21171e069
commit
e73a505866
1 changed files with 1 additions and 1 deletions
|
|
@ -1455,7 +1455,7 @@ next_filename:
|
|||
|
||||
g_dbus_method_invocation_return_value (invocation,
|
||||
g_variant_new ("(b^as)",
|
||||
(gboolean) (!!failures),
|
||||
(gboolean) (!failures),
|
||||
failures
|
||||
? (const char **) failures->pdata
|
||||
: NM_PTRARRAY_EMPTY (const char *)));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue