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-Tag: 5.1.0rc1~10^2~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f33d1d503f15597250c1f15eec5a21103d21e55e;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));