Skip to content

Commit

Permalink
improved more warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ZerBea committed Aug 6, 2020
1 parent ecaffd1 commit 58059df
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions hcxpcapngtool.c
Original file line number Diff line number Diff line change
Expand Up @@ -619,19 +619,21 @@ if(sequenceerrorcount > 0)
{
printf("\nWarning: out of sequence timestamps!\n"
"This dump file contains frames with out of sequence timestamps.\n"
"That is a bug of the capturing tool.\n");
"It is a bug of the capturing tool.\n");
}
if(zeroedtimestampcount > 0)
{
printf("\nWarning: missing timestamps!\n"
"This dump file contains frames with zeroed timestamps.\n"
"That prevent calculation of EAPOL TIMEOUT values.\n");
"That prevent calculation of EAPOL TIMEOUT values.\n"
"It is a bug of the capturing tool.\n");
}
if(eapolmsgtimestamperrorcount > 0)
{
printf("\nWarning: wrong timestamps!\n"
"This dump file contains frames with wrong timestamps.\n"
"That prevent calculation of EAPOL TIMEOUT values.\n");
"That prevent calculation of EAPOL TIMEOUT values.\n"
"It is a bug of the capturing tool.\n");
}
if(malformedcount > 10)
{
Expand Down

0 comments on commit 58059df

Please sign in to comment.