summaryrefslogtreecommitdiff
path: root/sysdep/unix/log.c
diff options
context:
space:
mode:
authorOndrej Zajicek (work) <santiago@crfreenet.org>2017-05-09 13:44:02 +0200
committerOndrej Zajicek (work) <santiago@crfreenet.org>2017-05-09 13:45:26 +0200
commit5d6dc93043a0bc77b1e0a71ea8dfe15325024b45 (patch)
treee925e549cc7525e6ed08ab5c10b13bf45e84e86e /sysdep/unix/log.c
parent7a855725f2ffde508da0c7ee01dc1bcd6e0a5d93 (diff)
Some more autoconf cleanups
Replace integer type width detection with C99 fixed-width types. Also remove some unused or obsolete code. Thanks to Ruben Kerkhof for the patchset.
Diffstat (limited to 'sysdep/unix/log.c')
-rw-r--r--sysdep/unix/log.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdep/unix/log.c b/sysdep/unix/log.c
index b89e6b7a..88a7188c 100644
--- a/sysdep/unix/log.c
+++ b/sysdep/unix/log.c
@@ -56,7 +56,7 @@ static int main_thread_self(void) { return 1; }
#endif
-#ifdef HAVE_SYSLOG
+#ifdef HAVE_SYSLOG_H
#include <sys/syslog.h>
static int syslog_priorities[] = {
@@ -127,7 +127,7 @@ log_commit(int class, buffer *buf)
fputc('\n', l->fh);
fflush(l->fh);
}
-#ifdef HAVE_SYSLOG
+#ifdef HAVE_SYSLOG_H
else
syslog(syslog_priorities[class], "%s", buf->start);
#endif
@@ -262,7 +262,7 @@ default_log_list(int debug, int init, char **syslog_name)
init_list(&init_log_list);
*syslog_name = NULL;
-#ifdef HAVE_SYSLOG
+#ifdef HAVE_SYSLOG_H
if (!debug)
{
static struct log_config lc_syslog = { .mask = ~0 };
@@ -287,7 +287,7 @@ log_switch(int debug, list *l, char *new_syslog_name)
current_log_list = l;
-#ifdef HAVE_SYSLOG
+#ifdef HAVE_SYSLOG_H
if (current_syslog_name && new_syslog_name &&
!strcmp(current_syslog_name, new_syslog_name))
return;