Skip to content

Commit

Permalink
Merge pull request #323 from v74863/patch-1
Browse files Browse the repository at this point in the history
typo, duration instead of duartion
  • Loading branch information
ZerBea authored Nov 23, 2023
2 parents 31d3d60 + aa3ae0a commit f569f81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hcxpcapngtool.c
Original file line number Diff line number Diff line change
Expand Up @@ -1022,8 +1022,8 @@ fprintf(stdout, "timestamp minimum (GMT)..................: %s\n", timestringmin
fprintf(stdout, "timestamp maximum (GMT)..................: %s\n", timestringmax);
if(timestampdiff > 0)
{
if(timestampdiff > 60000000000) fprintf(stdout, "duartion of the dump tool (minutes)......: %" PRIu64 "\n", timestampdiff / 60000000000);
else fprintf(stdout, "duartion of the dump tool (seconds)......: %" PRIu64 "\n", timestampdiff / 1000000000);
if(timestampdiff > 60000000000) fprintf(stdout, "duration of the dump tool (minutes)......: %" PRIu64 "\n", timestampdiff / 60000000000);
else fprintf(stdout, "duration of the dump tool (seconds)......: %" PRIu64 "\n", timestampdiff / 1000000000);
}
fprintf(stdout, "used capture interfaces..................: %d\n", iface);
for(c = 0; c < iface; c++)
Expand Down

0 comments on commit f569f81

Please sign in to comment.