From 08809f0c0d43f0eff50fa006989f55d88bc35443 Mon Sep 17 00:00:00 2001 From: merlokk <807634+merlokk@users.noreply.github.com> Date: Fri, 28 May 2021 14:33:49 +0300 Subject: [PATCH] fix working with config files --- client/src/cmdhffido.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/client/src/cmdhffido.c b/client/src/cmdhffido.c index 1c5d7a4fa..d1ce7b7cb 100644 --- a/client/src/cmdhffido.c +++ b/client/src/cmdhffido.c @@ -378,8 +378,7 @@ static int CmdHFFidoRegister(const char *cmd) { JsonSaveBufAsHexCompact(root, "KeyHandle", &buf[67], keyHandleLen); JsonSaveBufAsHexCompact(root, "DER", &buf[67 + keyHandleLen], derLen); - //sprintf(filename, "hf-fido2-params"); - res = saveFileJSONroot(filename, root, JSON_INDENT(2), verbose); + res = saveFileJSONrootEx(filename, root, JSON_INDENT(2), verbose, true); (void)res; } json_decref(root); @@ -635,7 +634,7 @@ static int CmdHFFidoAuthenticate(const char *cmd) { JsonSaveInt(root, "Counter", cntr); sprintf(filename, "hf-fido2-params"); - res = saveFileJSONroot(filename, root, JSON_INDENT(2), verbose); + res = saveFileJSONrootEx(filename, root, JSON_INDENT(2), verbose, true); (void)res; } json_decref(root); @@ -755,7 +754,7 @@ static int CmdHFFido2MakeCredential(const char *cmd) { // new file name.. sprintf(filename, "hf-fido2"); - res = saveFileJSONroot(filename, root, JSON_INDENT(2), verbose); + res = saveFileJSONrootEx(filename, root, JSON_INDENT(2), verbose, true); (void)res; json_decref(root); return res; @@ -875,7 +874,7 @@ static int CmdHFFido2GetAssertion(const char *cmd) { // new file name.. sprintf(filename, "hf-fido2"); - res = saveFileJSONroot(filename, root, JSON_INDENT(2), verbose); + res = saveFileJSONrootEx(filename, root, JSON_INDENT(2), verbose, true); (void)res; json_decref(root); return res;