mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-19 11:33:51 +08:00
fix: no copy the crc
This commit is contained in:
parent
53452ab857
commit
2a120ec2e0
1 changed files with 1 additions and 1 deletions
|
@ -1067,7 +1067,7 @@ int CmdHF14AMfUInfo(const char *Cmd){
|
|||
// add pwd / pack if used from cli
|
||||
if ( hasAuthKey ) {
|
||||
memcpy(ulev1_conf+8, authkeyptr, 4);
|
||||
memcpy(ulev1_conf+12, pack, sizeof(pack));
|
||||
memcpy(ulev1_conf+12, pack, 2);
|
||||
}
|
||||
ulev1_print_configuration(tagtype, ulev1_conf, startconfigblock);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue