mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-29 16:33:07 +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);
|
||||
|
||||
while ((!found) || (curr <= end_password)){
|
||||
while ( !found || (curr <= end_password)){
|
||||
|
||||
printf("."); fflush(stdout);
|
||||
|
||||
|
@ -1713,9 +1713,9 @@ int CmdT55xxBruteForce(const char *Cmd) {
|
|||
PrintAndLogEx(WARNING, "Aquireing data from device failed. Quitting");
|
||||
return 0;
|
||||
}
|
||||
|
||||
found = tryDetectModulation();
|
||||
|
||||
if (found) break;
|
||||
|
||||
++curr;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue