From 4faf06aae794a5b720fd3653ae2870e639a264fd Mon Sep 17 00:00:00 2001 From: Matt Johnston Date: Thu, 28 May 2020 23:26:34 +0800 Subject: [PATCH] Don't warn when SO_PRIORITY fails --- netio.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/netio.c b/netio.c index 8452003..d84975a 100644 --- a/netio.c +++ b/netio.c @@ -398,9 +398,9 @@ void set_sock_priority(int sock, enum dropbear_prio prio) { } /* linux specific, sets QoS class. see tc-prio(8) */ rc = setsockopt(sock, SOL_SOCKET, SO_PRIORITY, (void*) &so_prio_val, sizeof(so_prio_val)); - if (rc < 0 && errno != ENOTSOCK) - dropbear_log(LOG_WARNING, "Couldn't set SO_PRIORITY (%s)", - strerror(errno)); + if (rc < 0 && errno != ENOTSOCK) { + TRACE(("Couldn't set SO_PRIORITY (%s)", strerror(errno))) + } #endif }