From 348e246b66666642746d0bac72ca25958248a807 Mon Sep 17 00:00:00 2001 From: "W.C.A. Wijngaards" Date: Thu, 27 Feb 2020 15:08:10 +0100 Subject: [PATCH] - Fix #169: Fix warning for daemon/remote.c output may be truncated from snprintf. --- daemon/remote.c | 2 +- doc/Changelog | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/daemon/remote.c b/daemon/remote.c index 1782a39ca..f4b7298cb 100644 --- a/daemon/remote.c +++ b/daemon/remote.c @@ -907,7 +907,7 @@ static int print_ext(RES* ssl, struct ub_stats_info* s) { int i; - char nm[16]; + char nm[32]; const sldns_rr_descriptor* desc; const sldns_lookup_table* lt; /* TYPE */ diff --git a/doc/Changelog b/doc/Changelog index 25a4322ee..7bb8e5104 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,7 @@ +27 February 2020: Wouter + - Fix #169: Fix warning for daemon/remote.c output may be truncated + from snprintf. + 26 February 2020: Wouter - iana portlist updated.