chiark / gitweb /
PAM, uaccess: check for logind, not for systemd
[elogind.git] / src / udev / udev-builtin-uaccess.c
index 662bac9e0b27fed2c6c759d16c7a86545c5e7876..354ee08f28bd262911d321bf25ef756989621a5b 100644 (file)
@@ -29,7 +29,6 @@
 #include <dirent.h>
 #include <getopt.h>
 
-#include <systemd/sd-daemon.h>
 #include <systemd/sd-login.h>
 #include "logind-acl.h"
 #include "udev.h"
@@ -49,7 +48,7 @@ static int builtin_uaccess(struct udev_device *dev, int argc, char *argv[], bool
         umask(0022);
 
         /* don't muck around with ACLs when the system is not running systemd */
-        if (!sd_booted())
+        if (!logind_running())
                 return 0;
 
         path = udev_device_get_devnode(dev);