From 0db0b4e302f82165b763da7717059911a85c370f Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 15 Dec 2013 18:36:36 +0100 Subject: Daemon: use strdup() instead of g_strdup() --- src/Daemon.cxx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/Daemon.cxx b/src/Daemon.cxx index 1061cce27..6fc0f2d7c 100644 --- a/src/Daemon.cxx +++ b/src/Daemon.cxx @@ -25,8 +25,6 @@ #include "util/Domain.hxx" #include "Log.hxx" -#include - #include #include #include @@ -209,10 +207,10 @@ daemonize_init(const char *user, const char *group, AllocatedPath &&_pidfile) user_uid = pwd->pw_uid; user_gid = pwd->pw_gid; - user_name = g_strdup(user); + user_name = strdup(user); /* this is needed by libs such as arts */ - g_setenv("HOME", pwd->pw_dir, true); + setenv("HOME", pwd->pw_dir, true); } if (group) { @@ -235,7 +233,7 @@ daemonize_finish(void) pidfile = AllocatedPath::Null(); } - g_free(user_name); + free(user_name); } #endif -- cgit v1.2.3