diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-06-15 02:46:07 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-06-15 02:46:07 +0200 |
commit | cf3e247193b49c1907dd85b74f0de1530948016c (patch) | |
tree | a70df6e6661921da7807d816278f406f8e7c09d2 /src/dbus.h | |
parent | 53ec43c61d2f0e19c41640c63ec034b2f8cedb89 (diff) |
dbus: tighten match rules a bit
Diffstat (limited to 'src/dbus.h')
-rw-r--r-- | src/dbus.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/dbus.h b/src/dbus.h index 3ad299ed38..264bdff625 100644 --- a/src/dbus.h +++ b/src/dbus.h @@ -37,23 +37,23 @@ typedef struct BusProperty { } BusProperty; #define BUS_PROPERTIES_INTERFACE \ - " <interface name=\"org.freedesktop.DBus.Properties\">\n" \ - " <method name=\"Get\">\n" \ - " <arg name=\"interface\" direction=\"in\" type=\"s\"/>\n" \ - " <arg name=\"property\" direction=\"in\" type=\"s\"/>\n" \ - " <arg name=\"value\" direction=\"out\" type=\"v\"/>\n" \ - " </method>\n" \ - " <method name=\"GetAll\">\n" \ - " <arg name=\"interface\" direction=\"in\" type=\"s\"/>\n" \ + " <interface name=\"org.freedesktop.DBus.Properties\">\n" \ + " <method name=\"Get\">\n" \ + " <arg name=\"interface\" direction=\"in\" type=\"s\"/>\n" \ + " <arg name=\"property\" direction=\"in\" type=\"s\"/>\n" \ + " <arg name=\"value\" direction=\"out\" type=\"v\"/>\n" \ + " </method>\n" \ + " <method name=\"GetAll\">\n" \ + " <arg name=\"interface\" direction=\"in\" type=\"s\"/>\n" \ " <arg name=\"properties\" direction=\"out\" type=\"a{sv}\"/>\n" \ - " </method>\n" \ + " </method>\n" \ " </interface>\n" #define BUS_INTROSPECTABLE_INTERFACE \ - " <interface name=\"org.freedesktop.DBus.Introspectable\">\n" \ - " <method name=\"Introspect\">\n" \ - " <arg name=\"data\" type=\"s\" direction=\"out\"/>\n" \ - " </method>\n" \ + " <interface name=\"org.freedesktop.DBus.Introspectable\">\n" \ + " <method name=\"Introspect\">\n" \ + " <arg name=\"data\" type=\"s\" direction=\"out\"/>\n" \ + " </method>\n" \ " </interface>\n" int bus_init_system(Manager *m); |