From 9aa1bcc510fb95fd3e9391f948388e553d6779ff Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Thu, 2 Oct 2014 00:38:16 +0200 Subject: Lower error message severity if a nonce is not found to a warning --- src/libirecovery.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libirecovery.c b/src/libirecovery.c index a887bc0..7315001 100644 --- a/src/libirecovery.c +++ b/src/libirecovery.c @@ -347,7 +347,7 @@ static void irecv_copy_nonce_with_tag(irecv_client_t client, const char* tag, un } while (colon); if (nlen == 0) { - debug("%s: ERROR: couldn't find tag %s in string %s\n", __func__, tag, buf); + debug("%s: WARNING: couldn't find tag %s in string %s\n", __func__, tag, buf); return; } -- cgit v1.1-32-gdbae