summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlaforge <laforge@e0336214-984f-0b4b-a45f-81c69e1f0ede>2008-01-22 15:46:19 +0000
committerlaforge <laforge@e0336214-984f-0b4b-a45f-81c69e1f0ede>2008-01-22 15:46:19 +0000
commit322f6919c993efb7fadcf61f212a051ef7287cec (patch)
tree0c7294f9050f3d45fbcf34fb57d7db777f5a546b
parent237c7f9e9d0aad3a9830498a9bdb5fe5dd94df9e (diff)
Return size of mifare ultralight in bytes, just like other protocols (Robert
Schlephorst) git-svn-id: https://svn.gnumonks.org/trunk/librfid@2039 e0336214-984f-0b4b-a45f-81c69e1f0ede
-rw-r--r--src/rfid_proto_mifare_ul.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rfid_proto_mifare_ul.c b/src/rfid_proto_mifare_ul.c
index e1fe3b9..ea42166 100644
--- a/src/rfid_proto_mifare_ul.c
+++ b/src/rfid_proto_mifare_ul.c
@@ -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;
}
personal git repositories of Harald Welte. Your mileage may vary