summaryrefslogtreecommitdiffstats
path: root/network
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.dentz@openbossa.org>2007-10-03 18:49:14 +0000
committerLuiz Augusto von Dentz <luiz.dentz@openbossa.org>2007-10-03 18:49:14 +0000
commit70f0f80c49b989f346bd3932f26bffcbdb7f75db (patch)
tree16deea62dded828940627087e1f4c83958cfe2fa /network
parenta13f569db6e188218919014e97e37e457f5940ee (diff)
Fix dict signatures.
Diffstat (limited to 'network')
-rw-r--r--network/connection.c2
-rw-r--r--network/server.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/network/connection.c b/network/connection.c
index 245d4cc9..821560f8 100644
--- a/network/connection.c
+++ b/network/connection.c
@@ -622,7 +622,7 @@ static DBusMethodVTable connection_methods[] = {
{ "CancelConnect", connection_cancel, "", "" },
{ "Disconnect", connection_disconnect, "", "" },
{ "IsConnected", is_connected, "", "b" },
- { "GetInfo", get_info, "", "{sv}", },
+ { "GetInfo", get_info, "", "a{sv}" },
{ NULL, NULL, NULL, NULL }
};
diff --git a/network/server.c b/network/server.c
index 4ac7328f..dd4c816a 100644
--- a/network/server.c
+++ b/network/server.c
@@ -1111,7 +1111,7 @@ static DBusMethodVTable server_methods[] = {
{ "GetName", get_name, "", "s" },
{ "SetAddressRange", set_address_range, "ss", "" },
{ "SetRouting", set_routing, "s", "" },
- { "GetInfo", get_info, "", "{sv}" },
+ { "GetInfo", get_info, "", "a{sv}" },
{ NULL, NULL, NULL, NULL }
};