From db387abc972cf4409aa7c4e284701a78b9b20817 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Sun, 24 May 2026 11:53:55 +0200 Subject: [PATCH] fix plugins.feedback_os_release failure on sles-1600 just the comment at the beginning of its /etc/os-release is already more than 256 bytes --- plugin/feedback/utils.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/feedback/utils.cc b/plugin/feedback/utils.cc index 1d5c15e7e863b..83d6b2d9bee1a 100644 --- a/plugin/feedback/utils.cc +++ b/plugin/feedback/utils.cc @@ -141,7 +141,7 @@ static struct utsname ubuf; #ifdef TARGET_OS_LINUX #include static bool have_distribution= false; -static char distribution[256]; +static char distribution[1024]; static const char *masks[]= { "/etc/*-version", "/etc/*-release",