From 9e89da3c0cbf93964ffaeaf84ef50a5170af4826 Mon Sep 17 00:00:00 2001 From: merlokk <807634+merlokk@users.noreply.github.com> Date: Sun, 25 Nov 2018 00:12:06 +0200 Subject: [PATCH] remove debug --- client/cmdhffido.c | 1 - client/fido/cbortools.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/client/cmdhffido.c b/client/cmdhffido.c index 0e81aca6e..7969b7b94 100644 --- a/client/cmdhffido.c +++ b/client/cmdhffido.c @@ -724,7 +724,6 @@ int MakeCredentionalParseRes(uint8_t *data, size_t dataLen, bool verbose, bool s char key[100] = {0}; res = CborGetStringValue(&mapsmt, key, sizeof(key), &n); cbor_check(res); - printf("--key: %s\n", key); if (!strcmp(key, "alg")) { cbor_value_get_int64(&mapsmt, &alg); PrintAndLog("Alg [%lld]", (long long)alg); diff --git a/client/fido/cbortools.c b/client/fido/cbortools.c index cae5cdc7f..1693e6858 100644 --- a/client/fido/cbortools.c +++ b/client/fido/cbortools.c @@ -452,4 +452,4 @@ CborError CborGetStringValueBuf(CborValue *elm) { memset(stringBuf, 0x00, sizeof(stringBuf)); return CborGetStringValue(elm, stringBuf, sizeof(stringBuf), NULL); -}; \ No newline at end of file +};