From d586252d8ffa511d077dbbf2c6d704763639f702 Mon Sep 17 00:00:00 2001 From: thsm Date: Fri, 11 Sep 2015 19:44:24 +0200 Subject: [PATCH] Fixed the usage of the USE_CUSTOM_LOCAL_STATE_DIR macro, which prevented to set the daemon_pid_file_proc. --- shairport.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shairport.c b/shairport.c index 8acd523b..6a7e5ebd 100644 --- a/shairport.c +++ b/shairport.c @@ -680,8 +680,8 @@ int main(int argc, char **argv) { return 1; } -#if USE_CUSTOM_LOCAL_STATE_DIR - debug(1, "Locating localstatedir at \"%s\"", LOCALSTATEDIR); +#if USE_CUSTOM_PID_DIR + debug(1, "Locating custom pid dir at \"%s\"", PIDDIR); /* Point to a function to help locate where the PID file will go */ daemon_pid_file_proc = pid_file_proc; #endif -- 2.47.3