summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorreyk <reyk@openbsd.org>2014-07-13 15:39:01 +0000
committerreyk <reyk@openbsd.org>2014-07-13 15:39:01 +0000
commit32ce947b3a9f50f1c17dbd3e9527dbbb01b9ee4e (patch)
tree487575a33ca117b0e00288876b1740bd7cff9d00
parentSince the event(s) passed to a callback can be a mask of all events (diff)
downloadwireguard-openbsd-32ce947b3a9f50f1c17dbd3e9527dbbb01b9ee4e.tar.xz
wireguard-openbsd-32ce947b3a9f50f1c17dbd3e9527dbbb01b9ee4e.zip
Remove a debug message
-rw-r--r--usr.sbin/httpd/server_http.c3
-rw-r--r--usr.sbin/relayd/relay_http.c3
2 files changed, 2 insertions, 4 deletions
diff --git a/usr.sbin/httpd/server_http.c b/usr.sbin/httpd/server_http.c
index 4cecaed0f6a..7615d4297bc 100644
--- a/usr.sbin/httpd/server_http.c
+++ b/usr.sbin/httpd/server_http.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: server_http.c,v 1.4 2014/07/13 14:17:37 reyk Exp $ */
+/* $OpenBSD: server_http.c,v 1.5 2014/07/13 15:39:01 reyk Exp $ */
/*
* Copyright (c) 2006 - 2014 Reyk Floeter <reyk@openbsd.org>
@@ -642,7 +642,6 @@ server_writeheader_kv(struct client *clt, struct kv *hdr)
key = hdr->kv_key;
ptr = hdr->kv_value;
- DPRINTF("%s: ptr %s", __func__, ptr);
if (server_bufferevent_print(clt, key) == -1 ||
(ptr != NULL &&
(server_bufferevent_print(clt, ": ") == -1 ||
diff --git a/usr.sbin/relayd/relay_http.c b/usr.sbin/relayd/relay_http.c
index 4f2eb6c403f..6a6beaa33c3 100644
--- a/usr.sbin/relayd/relay_http.c
+++ b/usr.sbin/relayd/relay_http.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: relay_http.c,v 1.29 2014/07/13 00:32:08 benno Exp $ */
+/* $OpenBSD: relay_http.c,v 1.30 2014/07/13 15:39:01 reyk Exp $ */
/*
* Copyright (c) 2006 - 2014 Reyk Floeter <reyk@openbsd.org>
@@ -1090,7 +1090,6 @@ relay_writeheader_kv(struct ctl_relay_event *dst, struct kv *hdr)
key = hdr->kv_key;
ptr = hdr->kv_value;
- DPRINTF("%s: ptr %s", __func__, ptr);
if (relay_bufferevent_print(dst, key) == -1 ||
(ptr != NULL &&
(relay_bufferevent_print(dst, ": ") == -1 ||