=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/openssl/s_cb.c,v retrieving revision 1.14 retrieving revision 1.15 diff -c -r1.14 -r1.15 *** src/usr.bin/openssl/s_cb.c 2020/04/26 02:09:21 1.14 --- src/usr.bin/openssl/s_cb.c 2021/04/02 10:19:19 1.15 *************** *** 1,4 **** ! /* $OpenBSD: s_cb.c,v 1.14 2020/04/26 02:09:21 inoguchi Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * --- 1,4 ---- ! /* $OpenBSD: s_cb.c,v 1.15 2021/04/02 10:19:19 inoguchi Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * *************** *** 413,418 **** --- 413,421 ---- case DTLS1_VERSION: str_version = "DTLS 1.0 "; break; + case DTLS1_2_VERSION: + str_version = "DTLS 1.2 "; + break; default: str_version = "???"; } *************** *** 474,480 **** } if (version == SSL3_VERSION || version == TLS1_VERSION || version == TLS1_1_VERSION || version == TLS1_2_VERSION || ! version == TLS1_3_VERSION || version == DTLS1_VERSION) { /* XXX magic numbers are in ssl3.h */ switch (content_type) { case 20: --- 477,484 ---- } if (version == SSL3_VERSION || version == TLS1_VERSION || version == TLS1_1_VERSION || version == TLS1_2_VERSION || ! version == TLS1_3_VERSION || version == DTLS1_VERSION || ! version == DTLS1_2_VERSION) { /* XXX magic numbers are in ssl3.h */ switch (content_type) { case 20: