Codebase list openssl / c519d3a
Don't add extentions to ssl v3 connections. It breaks with some other software. (Closes: #471681, #471896) Kurt Roeckx 16 years ago
2 changed file(s) with 15 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 openssl (0.9.8g-8) unstable; urgency=high
1
2 * Don't add extentions to ssl v3 connections. It breaks with some
3 other software. (Closes: #471681, #471896)
4
5 -- Kurt Roeckx <kurt@roeckx.be> Sun, 23 Mar 2008 17:50:04 +0000
6
07 openssl (0.9.8g-7) unstable; urgency=low
18
29 * Upload to unstable.
131131 int extdatalen=0;
132132 unsigned char *ret = p;
133133
134 /* don't add extensions for SSLv3 */
135 if (s->client_version == SSL3_VERSION)
136 return p;
137
134138 ret+=2;
135139
136140 if (ret>=limit) return NULL; /* this really never occurs, but ... */
201205 int extdatalen=0;
202206 unsigned char *ret = p;
203207
208 /* don't add extensions for SSLv3 */
209 if (s->version == SSL3_VERSION)
210 return p;
211
204212 ret+=2;
205213 if (ret>=limit) return NULL; /* this really never occurs, but ... */
206214