From 322f6919c993efb7fadcf61f212a051ef7287cec Mon Sep 17 00:00:00 2001 From: laforge Date: Tue, 22 Jan 2008 15:46:19 +0000 Subject: 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 --- src/rfid_proto_mifare_ul.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; } -- cgit v1.2.3