diff --git a/src/firstboot/firstboot.c b/src/firstboot/firstboot.c index a98e53b3a3..825b67e87e 100644 --- a/src/firstboot/firstboot.c +++ b/src/firstboot/firstboot.c @@ -4,7 +4,7 @@ #include #include -#ifdef HAVE_CRYPT_H +#if HAVE_CRYPT_H /* libxcrypt is a replacement for glibc's libcrypt, and libcrypt might be * removed from glibc at some point. As part of the removal, defines for * crypt(3) are dropped from unistd.h, and we must include crypt.h instead. diff --git a/src/resolve/resolved-dnssd.c b/src/resolve/resolved-dnssd.c index aa4bd74788..293a0fade4 100644 --- a/src/resolve/resolved-dnssd.c +++ b/src/resolve/resolved-dnssd.c @@ -11,7 +11,7 @@ const char* const dnssd_service_dirs[] = { "/etc/systemd/dnssd", "/run/systemd/dnssd", "/usr/lib/systemd/dnssd", -#ifdef HAVE_SPLIT_USR +#if HAVE_SPLIT_USR "/lib/systemd/dnssd", #endif NULL diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index 927de35f32..7489bf1e6f 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -1052,7 +1052,7 @@ static int fd_set_acls(Item *item, int fd, const struct stat *st) { static int path_set_acls(Item *item, const char *path) { int r = 0; -#ifdef HAVE_ACL +#if HAVE_ACL _cleanup_close_ int fd = -1; struct stat st; @@ -1067,9 +1067,9 @@ static int path_set_acls(Item *item, const char *path) { return log_error_errno(errno, "Failed to fstat() file %s: %m", path); r = fd_set_acls(item, fd, &st); - #endif - return r; - } +#endif + return r; +} #define ATTRIBUTES_ALL \ (FS_NOATIME_FL | \