diff options
author | Florent Le Coz <louiz@louiz.org> | 2015-02-26 02:56:46 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2015-02-26 02:56:46 +0100 |
commit | 53e6b1da69199f54303e4cb2b00db3205f62ce6e (patch) | |
tree | 9b6776340beb922e65980aa2a027284d25a64902 /src/logger/logger.hpp | |
parent | 5db063781032fb4ae9c823737636c1240b67d111 (diff) | |
download | biboumi-53e6b1da69199f54303e4cb2b00db3205f62ce6e.tar.gz biboumi-53e6b1da69199f54303e4cb2b00db3205f62ce6e.tar.bz2 biboumi-53e6b1da69199f54303e4cb2b00db3205f62ce6e.tar.xz biboumi-53e6b1da69199f54303e4cb2b00db3205f62ce6e.zip |
Fix the systemd-conditional code
By using SYSTEMD_FOUND instead of SYSTEMDDAEMON_FOUND, where I forgot to
rename it…
Diffstat (limited to 'src/logger/logger.hpp')
-rw-r--r-- | src/logger/logger.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/logger/logger.hpp b/src/logger/logger.hpp index 7560505..b1ae20d 100644 --- a/src/logger/logger.hpp +++ b/src/logger/logger.hpp @@ -19,7 +19,7 @@ #include "config.h" -#ifdef SYSTEMDDAEMON_FOUND +#ifdef SYSTEMD_FOUND # include <systemd/sd-daemon.h> #else # define SD_DEBUG "[DEBUG]: " |