I'm very pleased to announce the release of our new website and documentation using the new toolchain with Hugo and AsciiDoctor. To get more information about the new toolchain please read the FreeBSD Documentation Project Primer[1], Hugo docs[2] and AsciiDoctor docs[3]. Acknowledgment: Benedict Reuschling <bcr@> Glen Barber <gjb@> Hiroki Sato <hrs@> Li-Wen Hsu <lwhsu@> Sean Chittenden <seanc@> The FreeBSD Foundation [1] https://docs.FreeBSD.org/en/books/fdp-primer/ [2] https://gohugo.io/documentation/ [3] https://docs.asciidoctor.org/home/ Approved by: doceng, core
24 lines
681 B
Diff
24 lines
681 B
Diff
Index: crypto/openssl/ssl/s3_pkt.c
|
|
===================================================================
|
|
RCS file: /home/ncvs/src/crypto/openssl/ssl/s3_pkt.c,v
|
|
retrieving revision 1.1.1.8
|
|
diff -c -r1.1.1.8 s3_pkt.c
|
|
*** crypto/openssl/ssl/s3_pkt.c 19 Feb 2003 23:17:05 -0000 1.1.1.8
|
|
--- crypto/openssl/ssl/s3_pkt.c 16 Mar 2004 13:18:28 -0000
|
|
***************
|
|
*** 1085,1090 ****
|
|
--- 1085,1098 ----
|
|
goto err;
|
|
}
|
|
|
|
+ /* Check we have a cipher to change to */
|
|
+ if (s->s3->tmp.new_cipher == NULL)
|
|
+ {
|
|
+ i=SSL_AD_UNEXPECTED_MESSAGE;
|
|
+ SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_CCS_RECEIVED_EARLY);
|
|
+ goto err;
|
|
+ }
|
|
+
|
|
rr->length=0;
|
|
|
|
if (s->msg_callback)
|