From c7c88e9c59a15d23a3de7d2e22781c57ec49b1fe Mon Sep 17 00:00:00 2001 From: John Weldon Date: Tue, 20 Feb 2018 09:29:11 -0700 Subject: [PATCH] Remove #ifdef for HAVE_SYSLOG_H - syslog.h is a standard posix header, this #ifdef is an artifact accidentally left in. --- src/conf.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/conf.c b/src/conf.c index 4ee209d..80bdab8 100644 --- a/src/conf.c +++ b/src/conf.c @@ -783,12 +783,7 @@ static HANDLE_FUNC (handle_xtinyproxy) static HANDLE_FUNC (handle_syslog) { -#ifdef HAVE_SYSLOG_H return set_bool_arg (&conf->syslog, line, &match[2]); -#else - fprintf (stderr, "Syslog support not compiled in executable.\n"); - return 1; -#endif } static HANDLE_FUNC (handle_bindsame)