summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormikeb <mikeb@openbsd.org>2017-02-07 11:52:07 +0000
committermikeb <mikeb@openbsd.org>2017-02-07 11:52:07 +0000
commit45b5d6c7a417cde76fd91c8cf2b835996611f95d (patch)
tree2f9c735173c39a0565b5281dde6d42a1bd26d85e
parentsync (diff)
downloadwireguard-openbsd-45b5d6c7a417cde76fd91c8cf2b835996611f95d.tar.xz
wireguard-openbsd-45b5d6c7a417cde76fd91c8cf2b835996611f95d.zip
Make the 'incomplete header' message debug only
-rw-r--r--sys/dev/pv/xenstore.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pv/xenstore.c b/sys/dev/pv/xenstore.c
index 0b81dbaa31b..49b8a6cca24 100644
--- a/sys/dev/pv/xenstore.c
+++ b/sys/dev/pv/xenstore.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: xenstore.c,v 1.39 2017/02/06 21:52:02 mikeb Exp $ */
+/* $OpenBSD: xenstore.c,v 1.40 2017/02/07 11:52:07 mikeb Exp $ */
/*
* Copyright (c) 2015 Mike Belopuhov
@@ -528,7 +528,7 @@ xs_intr(void *arg)
again:
if (xs->xs_rmsg == NULL) {
if (avail < sizeof(xmh)) {
- printf("%s: incomplete header: %d\n",
+ DPRINTF("%s: incomplete header: %d\n",
sc->sc_dev.dv_xname, avail);
goto out;
}