Skip to content

Commit

Permalink
fix: remove warning..
Browse files Browse the repository at this point in the history
  • Loading branch information
iceman1001 committed Feb 2, 2018
1 parent 07d7b94 commit c025e38
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/loclass/elite_crack.c
Original file line number Diff line number Diff line change
Expand Up @@ -546,8 +546,9 @@ int bruteforceFile(const char *filename, uint16_t keytable[]) {

if (f) fclose(f);

if (bytes_read < fsize)
if (bytes_read < fsize) {
prnlog("[!] Error, could only read %d bytes (should be %d)", bytes_read, fsize );
}

uint8_t res = bruteforceDump(dump, fsize, keytable);
free(dump);
Expand Down

0 comments on commit c025e38

Please sign in to comment.