From 3cc258fbd7e3d07a8a30a09386ebed180e6a52a3 Mon Sep 17 00:00:00 2001 From: Ralph Lange Date: Mon, 24 Nov 2025 14:45:27 +0100 Subject: [PATCH] Fix max. hostname length Was causing tests to fail on CI machines (GHA) that used long hostnames --- caPutLogApp/caPutLogTask.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caPutLogApp/caPutLogTask.h b/caPutLogApp/caPutLogTask.h index 6e0fab6..94da6a9 100644 --- a/caPutLogApp/caPutLogTask.h +++ b/caPutLogApp/caPutLogTask.h @@ -10,7 +10,7 @@ extern "C" { #endif #define MAX_USERID_SIZE 32 -#define MAX_HOSTID_SIZE 32 +#define MAX_HOSTID_SIZE 256 #if JSON_AND_ARRAYS_SUPPORTED #define MAX_ARRAY_SIZE_BYTES 400