From: Martin Willi Date: Mon, 4 Feb 2013 08:59:54 +0000 (+0100) Subject: error-notify: increase size of string/identity fields in messages X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6da093cfdbb31aaf350032cca1dfead180369352;p=thirdparty%2Fstrongswan.git error-notify: increase size of string/identity fields in messages --- diff --git a/src/libcharon/plugins/error_notify/error_notify_msg.h b/src/libcharon/plugins/error_notify/error_notify_msg.h index d031fc4c34..759d620c64 100644 --- a/src/libcharon/plugins/error_notify/error_notify_msg.h +++ b/src/libcharon/plugins/error_notify/error_notify_msg.h @@ -54,11 +54,11 @@ struct error_notify_msg_t { /** message type */ int type; /** string with an error description */ - char str[128]; + char str[384]; /** connection name, if known */ char name[64]; /** peer identity, if known */ - char id[128]; + char id[256]; /** peer address and port, if known */ char ip[60]; } __attribute__((packed));