X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fcore%2Fdbus-service.c;h=6568cd5ce0ed97e1e1b5d2022767c581130d78e5;hb=e06c73cc91e02a1a3dffdb0976fef754f1109e74;hp=e0e5ffcbfd4697336171b0625a5541b3f8a3bf15;hpb=5430f7f2bc7330f3088b894166bf3524a067e3d8;p=elogind.git diff --git a/src/core/dbus-service.c b/src/core/dbus-service.c index e0e5ffcbf..6568cd5ce 100644 --- a/src/core/dbus-service.c +++ b/src/core/dbus-service.c @@ -26,15 +26,6 @@ #include "dbus-service.h" #include "dbus-common.h" -#ifdef HAVE_SYSV_COMPAT -#define BUS_SERVICE_SYSV_INTERFACE_FRAGMENT \ - " \n" \ - " \n" \ - " \n" -#else -#define BUS_SERVICE_SYSV_INTERFACE_FRAGMENT "" -#endif - #define BUS_SERVICE_INTERFACE \ " \n" \ " \n" \ @@ -64,9 +55,7 @@ " \n" \ " \n" \ " \n" \ - " \n" \ " \n" \ - BUS_SERVICE_SYSV_INTERFACE_FRAGMENT \ " \n" #define INTROSPECTION \ @@ -145,12 +134,6 @@ static const BusProperty bus_service_properties[] = { { "ControlPID", bus_property_append_pid, "u", offsetof(Service, control_pid) }, { "BusName", bus_property_append_string, "s", offsetof(Service, bus_name), true }, { "StatusText", bus_property_append_string, "s", offsetof(Service, status_text), true }, -#ifdef HAVE_SYSV_COMPAT - { "SysVRunLevels", bus_property_append_string, "s", offsetof(Service, sysv_runlevels), true }, - { "SysVStartPriority", bus_property_append_int, "i", offsetof(Service, sysv_start_priority) }, - { "SysVPath", bus_property_append_string, "s", offsetof(Service, sysv_path), true }, -#endif - { "FsckPassNo", bus_property_append_int, "i", offsetof(Service, fsck_passno) }, { "Result", bus_service_append_service_result,"s", offsetof(Service, result) }, { NULL, } };