]> cvs.zerfleddert.de Git - proxmark3-svn/commitdiff
FIX: Mental note to self, bitnumber 4 is used, not the value 4 which would be bitnum...
authoriceman1001 <iceman@iuse.se>
Wed, 27 Apr 2016 17:54:29 +0000 (19:54 +0200)
committericeman1001 <iceman@iuse.se>
Wed, 27 Apr 2016 17:54:29 +0000 (19:54 +0200)
client/cmdhf.c

index 8f4c68d50bd08c54bece5324cab1a3e11d9ecf48..8724adadf61c4f0845f3c0222657840e5b5707e5 100644 (file)
@@ -277,7 +277,7 @@ void annotateIso14443b(char *exp, size_t size, uint8_t* cmd, uint8_t cmdsize)
                                default: snprintf(exp, size,"16 slots ");break;
                        }
                        
-                       if ( (cmd[2] & 0x4) )
+                       if ( (cmd[2] & 0x8) )
                                snprintf(exp, size,"REQB");
                        else
                                snprintf(exp, size,"WUPB");
Impressum, Datenschutz