From: Vladimír Čunát Date: Wed, 28 Jul 2021 19:49:59 +0000 (+0200) Subject: lib/utils logging nit: use another logging group X-Git-Tag: v5.4.0~2^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=338b5a935a4e6c0102c97ee5f4e5b5807c7bbe93;p=thirdparty%2Fknot-resolver.git lib/utils logging nit: use another logging group Our randomness utils have nothing to do with TLS, so let's use SYSTEM. --- diff --git a/lib/utils.c b/lib/utils.c index 1410b7e9b..789a9b25f 100644 --- a/lib/utils.c +++ b/lib/utils.c @@ -1108,7 +1108,7 @@ static void rnd_noerror(void *data, uint size) { int ret = gnutls_rnd(GNUTLS_RND_NONCE, data, size); if (ret) { - kr_log_error(TLS, "gnutls_rnd(): %s\n", gnutls_strerror(ret)); + kr_log_error(SYSTEM, "gnutls_rnd(): %s\n", gnutls_strerror(ret)); abort(); } }