From ff06159099771b46e0154d3b51c7da3671d1c9c8 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Wed, 23 Jul 2025 17:10:31 +0200 Subject: [PATCH] certexpire: Double size of internal buffer for identities The error-notify, lookip, and whitelist (previous commit) plugins already use the same buffer size for identities. --- src/libcharon/plugins/certexpire/certexpire_export.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcharon/plugins/certexpire/certexpire_export.c b/src/libcharon/plugins/certexpire/certexpire_export.c index 955160d58c..6e02c2d7c4 100644 --- a/src/libcharon/plugins/certexpire/certexpire_export.c +++ b/src/libcharon/plugins/certexpire/certexpire_export.c @@ -106,7 +106,7 @@ struct private_certexpire_export_t { */ typedef struct { /** certificate subject as subjectAltName or CN of a DN */ - char id[128]; + char id[256]; /** list of expiration dates, 0 if no certificate */ time_t expire[MAX_TRUSTCHAIN_LENGTH]; } entry_t; -- 2.47.2