summaryrefslogtreecommitdiffstats
path: root/plugin/eurephia-auth.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/eurephia-auth.c')
-rw-r--r--plugin/eurephia-auth.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugin/eurephia-auth.c b/plugin/eurephia-auth.c
index 14ef79b..81a9d10 100644
--- a/plugin/eurephia-auth.c
+++ b/plugin/eurephia-auth.c
@@ -40,6 +40,7 @@
#include <eurephiadb.h>
#include <eurephia.h>
#include <eurephia_nullsafe.h>
+#include <environment.h>
#ifdef ENABLE_DEBUG /* To avoid compiler warnings when ENABLE_DEBUG is not defined */
@@ -110,9 +111,9 @@ static void dump_env(FILE *f, const char *prefix, const char *envp[]) {
*/
static void daemonize(const char *envp[])
{
- char *daemon_string = get_env(NULL, 0, 32, envp, "daemon");
+ char *daemon_string = GETENV_DAEMON(envp);
if( daemon_string && daemon_string[0] == '1' ) {
- char *log_redirect = get_env(NULL, 0, 32, envp, "daemon_log_redirect");
+ char *log_redirect = GETENV_DAEMONLOGREDIR(envp);
int fd = -1;
if( log_redirect && log_redirect[0] == '1' ) {
fd = dup (2);