From eacafe1f2f49e389fe72f60043b4de065d11ed75 Mon Sep 17 00:00:00 2001 From: = <=> Date: Mon, 17 Jun 2024 12:36:18 +0200 Subject: [PATCH] added delimter (tab) --- hcxpcapngtool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hcxpcapngtool.c b/hcxpcapngtool.c index 14fd44666..46a5ffe14 100644 --- a/hcxpcapngtool.c +++ b/hcxpcapngtool.c @@ -2220,7 +2220,7 @@ for(zeigerhs = zeigerhsakt; zeigerhs < handshakelistptr; zeigerhs++) if(addtimestampflag == false) fprintf(fh_pmkideapol, "*%02x\n", zeigerhs->status); else { - fprintf(fh_pmkideapol, "*%02x\t%s %" PRIu64 "\t", zeigerhs->status, timestringhs, zeigerhs->timestampgap); + fprintf(fh_pmkideapol, "*%02x\t%s\t%" PRIu64 "\t", zeigerhs->status, timestringhs, zeigerhs->timestampgap); if((zeigerhs->status & 0x07) == ST_M12E2) fprintf(fh_pmkideapol, "M12E2"); else if((zeigerhs->status & 0x07) == ST_M14E4) fprintf(fh_pmkideapol, "M14E4"); else if((zeigerhs->status & 0x07) == ST_M32E2) fprintf(fh_pmkideapol, "M32E2");