diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2019-06-27 15:18:43 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2019-06-27 15:18:43 +0000 |
commit | 5cd8541b8bf9c365e100572a9180f868196370c2 (patch) | |
tree | 059b91a74e02760fb0b47b9140a8d5b01dd2b4a5 /usr.sbin/ntpd/ntpd.h | |
parent | 177496c71ff81f14d51f1a5f0f3df1f1c09a24c5 (diff) |
Allow logging to both stderr and syslog; don't reset the log level if
the log destination changes. ok claudio@ benno@
Diffstat (limited to 'usr.sbin/ntpd/ntpd.h')
-rw-r--r-- | usr.sbin/ntpd/ntpd.h | 24 |
1 files changed, 2 insertions, 22 deletions
diff --git a/usr.sbin/ntpd/ntpd.h b/usr.sbin/ntpd/ntpd.h index 3b20b24af6d..bef25b886fc 100644 --- a/usr.sbin/ntpd/ntpd.h +++ b/usr.sbin/ntpd/ntpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ntpd.h,v 1.144 2019/06/20 07:28:18 otto Exp $ */ +/* $OpenBSD: ntpd.h,v 1.145 2019/06/27 15:18:42 otto Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -32,6 +32,7 @@ #include <imsg.h> #include "ntp.h" +#include "log.h" #define MAXIMUM(a, b) ((a) > (b) ? (a) : (b)) @@ -423,24 +424,3 @@ void build_show_peer(struct ctl_show_peer *, void build_show_sensor(struct ctl_show_sensor *, struct ntp_sensor *); -/* log.c */ -void log_init(int, int); -void log_procinit(const char *); -void log_setverbose(int); -int log_getverbose(void); -void log_warn(const char *, ...) - __attribute__((__format__ (printf, 1, 2))); -void log_warnx(const char *, ...) - __attribute__((__format__ (printf, 1, 2))); -void log_info(const char *, ...) - __attribute__((__format__ (printf, 1, 2))); -void log_debug(const char *, ...) - __attribute__((__format__ (printf, 1, 2))); -void logit(int, const char *, ...) - __attribute__((__format__ (printf, 2, 3))); -void vlog(int, const char *, va_list) - __attribute__((__format__ (printf, 2, 0))); -__dead void fatal(const char *, ...) - __attribute__((__format__ (printf, 1, 2))); -__dead void fatalx(const char *, ...) - __attribute__((__format__ (printf, 1, 2))); |