mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
CHG: just some parameter / variable name changes. Nuttin' special.
This commit is contained in:
parent
d433698311
commit
ba39db376c
6 changed files with 47 additions and 48 deletions
|
@ -448,7 +448,7 @@ int CmdHF14ASim(const char *Cmd) {
|
|||
uint8_t uid[10] = {0,0,0,0,0,0,0,0,0,0};
|
||||
int uidlen = 0;
|
||||
bool useUIDfromEML = TRUE;
|
||||
bool showMaths = false;
|
||||
bool verbose = false;
|
||||
|
||||
while(param_getchar(Cmd, cmdp) != 0x00) {
|
||||
switch(param_getchar(Cmd, cmdp)) {
|
||||
|
@ -481,7 +481,7 @@ int CmdHF14ASim(const char *Cmd) {
|
|||
break;
|
||||
case 'v':
|
||||
case 'V':
|
||||
showMaths = true;
|
||||
verbose = true;
|
||||
cmdp++;
|
||||
break;
|
||||
case 'x':
|
||||
|
@ -520,7 +520,7 @@ int CmdHF14ASim(const char *Cmd) {
|
|||
if ( (resp.arg[0] & 0xffff) != CMD_SIMULATE_MIFARE_CARD ) break;
|
||||
|
||||
memcpy( data, resp.d.asBytes, sizeof(data) );
|
||||
readerAttack(data, TRUE, showMaths);
|
||||
readerAttack(data, TRUE, verbose);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue