From 04a6a634270356d1f654f42763785a0f7d19d237 Mon Sep 17 00:00:00 2001 From: merlokk <807634+merlokk@users.noreply.github.com> Date: Tue, 5 Mar 2019 18:43:12 +0200 Subject: [PATCH] rename --- client/mifare/ndef.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/mifare/ndef.c b/client/mifare/ndef.c index 96911f607..dbb4a7bd2 100644 --- a/client/mifare/ndef.c +++ b/client/mifare/ndef.c @@ -162,10 +162,10 @@ int ndefDecodeSig(uint8_t *sig, size_t siglen) { } if (sig[indx] == 0x80) { - size_t intchainlen = (sig[indx + 1] << 8) + sig[indx + 2]; + size_t inturilen = (sig[indx + 1] << 8) + sig[indx + 2]; indx += 3; - PrintAndLogEx(NORMAL, "\tchain [%d]: %.*s", intchainlen, intchainlen, &sig[indx]); - indx += intchainlen; + PrintAndLogEx(NORMAL, "\tsignature uri [%d]: %.*s", inturilen, inturilen, &sig[indx]); + indx += inturilen; continue; }