X-Git-Url: https://uglyman.kremlin.cc/gitweb/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fconfig.c;h=3c20820d9b7d08cd31aa8ba5005d2c86c858b21e;hb=e8f563da640afecdbe77027d7d27e0768f52bebc;hp=ac9ecf468e2df72c62f6f4e2be478da8304b4491;hpb=fbc0295f6d0b50482a8f636b5ceba244e195ecaa;p=systembsd.git diff --git a/src/config.c b/src/config.c index ac9ecf4..3c20820 100644 --- a/src/config.c +++ b/src/config.c @@ -19,6 +19,20 @@ #include static GKeyFile *config; +static int config_descr; + +static gchar *data_dir; + +static int hostnamed_ispect_xml_descr, hostnamed_dbus_xml_descr; +static int localed_ispect_xml_descr, localed_dbus_xml_descr; +static int timedated_ispect_xml_descr, timedated_dbus_xml_descr; +static int logind_ispect_xml_descr, logind_dbus_xml_descr; + +/*TODO depending on builtin xml flag, these should be matched to checksums */ +static gchar **hostnamed_ispect_xml, hostnamed_dbus_xml; +static gchar **localed_ispect_xml, localed_dbus_xml; +static gchar **timedated_ispect_xml, timedated_dbus_xml; +static gchar **logind_ispect_xml, logind_dbus_xml; static const gchar *CONFIG_KEYS[] = { "PrettyHostname", @@ -109,3 +123,4 @@ gboolean config_init() { return FALSE; } } +}