diff options
| author | Sebastien Bacher <seb128@ubuntu.com> | 2020-07-02 11:35:14 +0200 |
|---|---|---|
| committer | Sebastien Bacher <seb128@ubuntu.com> | 2020-07-02 11:52:25 +0200 |
| commit | c6c4e39b012d544c1f1ed816686c8ae1599da793 (patch) | |
| tree | 094d5e07c1d135d0ee67d99e051fd6a9a367a6a4 /libnm/nm-client.c | |
| parent | 7368e45ff5b3b8b328d55408bcd403e4d6c564d0 (diff) | |
| parent | acd7b014c72673f5b0c0b91309e27028886da167 (diff) | |
Merge remote-tracking branch 'salsa/debian/master' into ubuntu/master
Diffstat (limited to 'libnm/nm-client.c')
| -rw-r--r-- | libnm/nm-client.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libnm/nm-client.c b/libnm/nm-client.c index ed8b69ca..d7f61152 100644 --- a/libnm/nm-client.c +++ b/libnm/nm-client.c @@ -4576,7 +4576,7 @@ nm_client_check_connectivity_finish (NMClient *client, guint32 connectivity; g_return_val_if_fail (NM_IS_CLIENT (client), NM_CONNECTIVITY_UNKNOWN); - g_return_val_if_fail (nm_g_task_is_valid (client, result, nm_client_check_connectivity_async), NM_CONNECTIVITY_UNKNOWN); + g_return_val_if_fail (nm_g_task_is_valid (result, client, nm_client_check_connectivity_async), NM_CONNECTIVITY_UNKNOWN); ret = g_task_propagate_pointer (G_TASK (result), error); if (!ret) @@ -6738,9 +6738,9 @@ nm_client_dbus_call_finish (NMClient *client, * nm_client_dbus_set_property: * @client: the #NMClient * @object_path: path of remote object - * @interface_name: D-Bus interface to invoke method on + * @interface_name: D-Bus interface for the property to set. * @property_name: the name of the property to set - * @value: a #GVariant tuple with the value to set + * @value: a #GVariant with the value to set. * @timeout_msec: the timeout in milliseconds, -1 to use the default * timeout or %G_MAXINT for no timeout * @cancellable: (nullable): a #GCancellable or %NULL |