From da2c4d7382776fcfb2adddf2c7a6005e611a971a Mon Sep 17 00:00:00 2001 From: jason taylor Date: Fri, 16 Aug 2019 13:54:41 -0400 Subject: [PATCH] applayer: fix typo in debug output Signed-off-by: jason taylor --- src/app-layer-parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app-layer-parser.c b/src/app-layer-parser.c index f7f95d036f..c004955211 100644 --- a/src/app-layer-parser.c +++ b/src/app-layer-parser.c @@ -664,7 +664,7 @@ static AppLayerGetTxIterTuple AppLayerDefaultGetTxIterator( .tx_id = tx_id, .has_next = (tx_id + 1 < max_tx_id), }; - SCLogDebug("tulpe: %p/%"PRIu64"/%s", tuple.tx_ptr, tuple.tx_id, + SCLogDebug("tuple: %p/%"PRIu64"/%s", tuple.tx_ptr, tuple.tx_id, tuple.has_next ? "true" : "false"); return tuple; }