diff options
author | John Weldon <johnweldon4@gmail.com> | 2018-02-20 09:29:11 -0700 |
---|---|---|
committer | rofl0r <rofl0r@users.noreply.github.com> | 2018-02-23 05:32:33 +0000 |
commit | c7c88e9c59a15d23a3de7d2e22781c57ec49b1fe (patch) | |
tree | 718ce4923168e4cc1d06868758c66c9929e8fd41 /src | |
parent | 9acb0cb16cb65a554c5443f0409f827390379249 (diff) |
Remove #ifdef for HAVE_SYSLOG_H
- syslog.h is a standard posix header, this #ifdef is an artifact
accidentally left in.
Diffstat (limited to 'src')
-rw-r--r-- | src/conf.c | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -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) |