diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-08-06 21:33:20 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-08-06 21:34:11 +0200 |
commit | c593cfe164bbdd063b8e8504be14f758b1f0a8c3 (patch) | |
tree | 88bfbef0aabea9cf585ac9b7ef3e90752f92eb04 /src/sd-daemon.c | |
parent | b9911f4434f93256e6adc563f3ff96419118eaad (diff) |
sd-daemon: fix compilation on old systems lacking SOCK_CLOEXEC
Diffstat (limited to 'src/sd-daemon.c')
-rw-r--r-- | src/sd-daemon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sd-daemon.c b/src/sd-daemon.c index 3bb258d341..1197372b81 100644 --- a/src/sd-daemon.c +++ b/src/sd-daemon.c @@ -325,7 +325,7 @@ int sd_is_socket_unix(int fd, int type, int listening, const char *path, size_t } int sd_notify(int unset_environment, const char *state) { -#if defined(DISABLE_SYSTEMD) || !defined(__linux__) +#if defined(DISABLE_SYSTEMD) || !defined(__linux__) || !defined(SOCK_CLOEXEC) return 0; #else int fd = -1, r; |