summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2020-05-28 23:26:34 +0800
committerMatt Johnston <matt@ucc.asn.au>2020-05-28 23:26:34 +0800
commitcaabad0d5d9ffa901675ba88a67e9c40cb5137b8 (patch)
tree18551942c8b96e62664e2fbb7726bc1c18331864
parent4b035bfde9bf44629a3c7d6bc65ebddbfae85d52 (diff)
downloaddropbear-caabad0d5d9ffa901675ba88a67e9c40cb5137b8.tar.gz
Don't warn when SO_PRIORITY fails
-rw-r--r--netio.c6
1 files 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
}