summaryrefslogtreecommitdiffstats
path: root/lib/libevent/log.h
diff options
context:
space:
mode:
authorbrad <brad@openbsd.org>2008-05-02 06:09:11 +0000
committerbrad <brad@openbsd.org>2008-05-02 06:09:11 +0000
commitbdce580dd5484a4be9bfd4a9190bc7567b885c81 (patch)
tree47b2d551a32f9da41534681e10790819fe771bd9 /lib/libevent/log.h
parentdo not always delay log initialization, when no configuration file is (diff)
downloadwireguard-openbsd-bdce580dd5484a4be9bfd4a9190bc7567b885c81.tar.xz
wireguard-openbsd-bdce580dd5484a4be9bfd4a9190bc7567b885c81.zip
Update to libevent 1.3e while retaining our local changes.
"No objection" millert@ "the diff looks and works fine" reyk@
Diffstat (limited to 'lib/libevent/log.h')
-rw-r--r--lib/libevent/log.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libevent/log.h b/lib/libevent/log.h
index 7aa4231b9b6..d39e0c2b541 100644
--- a/lib/libevent/log.h
+++ b/lib/libevent/log.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: log.h,v 1.4 2007/03/19 15:12:49 millert Exp $ */
+/* $OpenBSD: log.h,v 1.5 2008/05/02 06:09:11 brad Exp $ */
/*
* Copyright (c) 2000-2004 Niels Provos <provos@citi.umich.edu>
@@ -35,7 +35,7 @@ void event_errx(int eval, const char *fmt, ...);
void event_warnx(const char *fmt, ...);
void event_msgx(const char *fmt, ...);
void _event_debugx(const char *fmt, ...);
-#undef USE_DEBUG
+
#ifdef USE_DEBUG
#define event_debug(x) _event_debugx x
#else