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.
This commit is contained in:
Tobias Brunner
2025-07-23 18:50:53 +02:00
parent ae2e0b6cf2
commit ff06159099
@@ -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;