summaryrefslogtreecommitdiffstats
path: root/usr.sbin/syslogd/syslogd.h
diff options
context:
space:
mode:
authorbluhm <bluhm@openbsd.org>2017-04-05 11:31:45 +0000
committerbluhm <bluhm@openbsd.org>2017-04-05 11:31:45 +0000
commited00ae787f425c55b56e641ff126d4dd58279df4 (patch)
tree5ee018fdfd76e22519004ba90733c7425e6b5c16 /usr.sbin/syslogd/syslogd.h
parentTry again to resolve problems with mistaking sessions for windows: now (diff)
downloadwireguard-openbsd-ed00ae787f425c55b56e641ff126d4dd58279df4.tar.xz
wireguard-openbsd-ed00ae787f425c55b56e641ff126d4dd58279df4.zip
Replace logdebug() with generic log_debug() from log.c. Implement
log_debugadd() to construct debug message incrementally. OK deraadt@
Diffstat (limited to 'usr.sbin/syslogd/syslogd.h')
-rw-r--r--usr.sbin/syslogd/syslogd.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/syslogd/syslogd.h b/usr.sbin/syslogd/syslogd.h
index c5d33c6b275..f85b7f938ea 100644
--- a/usr.sbin/syslogd/syslogd.h
+++ b/usr.sbin/syslogd/syslogd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: syslogd.h,v 1.27 2017/03/16 23:55:19 bluhm Exp $ */
+/* $OpenBSD: syslogd.h,v 1.28 2017/04/05 11:31:45 bluhm Exp $ */
/*
* Copyright (c) 2003 Anil Madhavapeddy <anil@recoil.org>
@@ -50,7 +50,6 @@ extern char *path_ctlsock;
#define MAXLINE 8192 /* maximum line length */
#define ERRBUFSIZE 256
-void logdebug(const char *, ...) __attribute__((__format__ (printf, 1, 2)));
void vlogmsg(int pri, const char *, const char *, va_list);
__dead void die(int);
extern int Debug;