Return size of mifare ultralight in bytes, just like other protocols (Robert
authorHarald Welte <laforge@gnumonks.org>
Tue, 22 Jan 2008 15:46:19 +0000 (15:46 +0000)
committerHarald Welte <laforge@gnumonks.org>
Tue, 22 Jan 2008 15:46:19 +0000 (15:46 +0000)
Schlephorst)

git-svn-id: https://svn.gnumonks.org/trunk/librfid@2039 e0336214-984f-0b4b-a45f-81c69e1f0ede

src/rfid_proto_mifare_ul.c

index e1fe3b9..ea42166 100644 (file)
@@ -109,7 +109,8 @@ mful_getopt(struct rfid_protocol_handle *ph, int optname, void *optval,
        switch (optname) {
        case RFID_OPT_PROTO_SIZE:
                ret = 0;
-               *size = 512;
+               /* we have to return the size in bytes, not bits */
+               *size = 512/8;
                break;
        }