summaryrefslogtreecommitdiff
path: root/src/grp-login/systemd-logind
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-08-01 16:33:32 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-08-01 16:33:32 -0400
commit272b48187cee0b42b6e936ad2c045f13b391f3ad (patch)
tree383049270ccbac5040e4404bbe71ac49d0c423db /src/grp-login/systemd-logind
parent46277a7844c854210eaa0a3612fa297ec33ddb7b (diff)
find src \( -name '*.h' -o -name '*.c' \) -type f -exec ./fixup_includes {} \;
Diffstat (limited to 'src/grp-login/systemd-logind')
-rw-r--r--src/grp-login/systemd-logind/logind.c11
-rw-r--r--src/grp-login/systemd-logind/logind.h2
2 files changed, 7 insertions, 6 deletions
diff --git a/src/grp-login/systemd-logind/logind.c b/src/grp-login/systemd-logind/logind.c
index 8031d04a8f..e5e21f7567 100644
--- a/src/grp-login/systemd-logind/logind.c
+++ b/src/grp-login/systemd-logind/logind.c
@@ -22,23 +22,24 @@
#include <string.h>
#include <unistd.h>
-#include "libudev.h"
+#include <libudev.h>
#include <systemd/sd-daemon.h>
#include "basic/alloc-util.h"
-#include "bus-error.h"
-#include "shared/bus-util.h"
-#include "shared/conf-parser.h"
#include "basic/def.h"
#include "basic/dirent-util.h"
#include "basic/fd-util.h"
#include "basic/formats-util.h"
-#include "logind.h"
#include "basic/selinux-util.h"
#include "basic/signal-util.h"
#include "basic/strv.h"
+#include "sd-bus/bus-error.h"
+#include "shared/bus-util.h"
+#include "shared/conf-parser.h"
#include "shared/udev-util.h"
+#include "logind.h"
+
static void manager_free(Manager *m);
static void manager_reset_config(Manager *m) {
diff --git a/src/grp-login/systemd-logind/logind.h b/src/grp-login/systemd-logind/logind.h
index ab6d917678..effc498118 100644
--- a/src/grp-login/systemd-logind/logind.h
+++ b/src/grp-login/systemd-logind/logind.h
@@ -21,7 +21,7 @@
#include <stdbool.h>
-#include "libudev.h"
+#include <libudev.h>
#include <systemd/sd-bus.h>
#include <systemd/sd-event.h>