From: Jose Dapena Paz Date: Wed, 7 Oct 2009 10:49:59 +0000 (+0200) Subject: Increase the limit of characters to "secure" headers to 2048 X-Git-Tag: 3.1.1~2 X-Git-Url: http://git.maemo.org/git/?p=modest;a=commitdiff_plain;h=f49f29f018069cf73e1c6e04aacf06e703f913da Increase the limit of characters to "secure" headers to 2048 (fixes NB#136030) --- diff --git a/src/modest-text-utils.c b/src/modest-text-utils.c index 89dcb91..f84f2f6 100644 --- a/src/modest-text-utils.c +++ b/src/modest-text-utils.c @@ -2047,7 +2047,7 @@ gchar * modest_text_utils_get_secure_header (const gchar *value, const gchar *header) { - const gint max_len = 128; + const gint max_len = 2048; gchar *new_value = NULL; gchar *needle = g_strrstr (value, header);