From bb01e0f8534a785beeb64f01960b29b69b0227c5 Mon Sep 17 00:00:00 2001 From: laforge Date: Tue, 22 Jan 2008 15:44:21 +0000 Subject: Parse mifare keys with colons correctly (Rainer Keller) git-svn-id: https://svn.gnumonks.org/trunk/librfid@2037 e0336214-984f-0b4b-a45f-81c69e1f0ede --- utils/common.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/utils/common.c b/utils/common.c index 08c7c1f..12c3bd4 100644 --- a/utils/common.c +++ b/utils/common.c @@ -55,10 +55,8 @@ hexread(unsigned char *result, const unsigned char *in, unsigned int len) unsigned char *res = result; for (pos = in; pos-in <= len-2; pos+=2) { - if (*pos == ':') { + if (*pos == ':') pos++; - continue; - } dig1 = *pos; dig2 = *(pos+1); -- cgit v1.2.3