mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-04-29 23:00:02 +08:00
fix: dead code
This commit is contained in:
parent
2e3694aa3b
commit
3d84e4dc03
1 changed files with 3 additions and 3 deletions
|
@ -1701,7 +1701,7 @@ int CmdT55xxBruteForce(const char *Cmd) {
|
||||||
|
|
||||||
PrintAndLogEx(INFO, "Search password range [%08X -> %08X]", start_password, end_password);
|
PrintAndLogEx(INFO, "Search password range [%08X -> %08X]", start_password, end_password);
|
||||||
|
|
||||||
while ((!found) || (curr <= end_password)){
|
while ( !found || (curr <= end_password)){
|
||||||
|
|
||||||
printf("."); fflush(stdout);
|
printf("."); fflush(stdout);
|
||||||
|
|
||||||
|
@ -1713,9 +1713,9 @@ int CmdT55xxBruteForce(const char *Cmd) {
|
||||||
PrintAndLogEx(WARNING, "Aquireing data from device failed. Quitting");
|
PrintAndLogEx(WARNING, "Aquireing data from device failed. Quitting");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
found = tryDetectModulation();
|
found = tryDetectModulation();
|
||||||
|
|
||||||
if (found) break;
|
|
||||||
++curr;
|
++curr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue