From 1fe68ef639f0e4254b41fc70a4b9856942c43491 Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Tue, 21 May 2019 11:03:02 -0500 Subject: [PATCH] Remove printf debugging --- bin/convert.c | 3 --- bin/replaypcap.c | 3 --- 2 files changed, 6 deletions(-) diff --git a/bin/convert.c b/bin/convert.c index e58c754..d3b3d6f 100644 --- a/bin/convert.c +++ b/bin/convert.c @@ -171,9 +171,6 @@ static ssize_t handle_block(hexagram_pcapng_stream *stream, default: break; } - fprintf(stderr, "Read block type %08"PRIx32" len %zu\n", - type, len); - if (lseek(stream->fd, len, SEEK_CUR) < 0) { stream->error = HEXAGRAM_PCAPNG_ERROR_IO; diff --git a/bin/replaypcap.c b/bin/replaypcap.c index f68a420..8623f44 100644 --- a/bin/replaypcap.c +++ b/bin/replaypcap.c @@ -212,9 +212,6 @@ static ssize_t handle_block(hexagram_pcapng_stream *stream, default: break; } - printf("Read block type %08"PRIx32" len %zu\n", - type, len); - if (lseek(stream->fd, len, SEEK_CUR) < 0) { stream->error = HEXAGRAM_PCAPNG_ERROR_IO;