summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2018-07-04 18:27:44 +0200
committerUwe Kleine-König <u.kleine-koenig@pengutronix.de>2018-07-05 08:18:50 +0200
commit56184d7859d6f805f2504041e8b0656846512fb3 (patch)
treefe841e3c8a0869b742209396bdfe314eb919de25
parentbfcf9a9f00be03db3039b6e5a27b710429fef75e (diff)
downloadmicrocom-56184d7859d6f805f2504041e8b0656846512fb3.tar.gz
microcom-56184d7859d6f805f2504041e8b0656846512fb3.tar.xz
fix debug printf about WILL/WONT/DO/DONT
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
-rw-r--r--mux.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mux.c b/mux.c
index 341f880..c393a43 100644
--- a/mux.c
+++ b/mux.c
@@ -162,13 +162,13 @@ static int handle_command(unsigned char *buf, int len)
dprintf("WILL ");
break;
case WONT:
- dprintf("WILL ");
+ dprintf("WONT ");
break;
case DO:
- dprintf("WILL ");
+ dprintf("DO ");
break;
case DONT:
- dprintf("WILL ");
+ dprintf("DONT ");
break;
default:
dprintf("%d ", buf[i]);