diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2018-11-06 05:45:51 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2018-11-06 05:45:51 +0000 |
commit | 2ff754b129225551b5767b4312cc0de26d4e009e (patch) | |
tree | afe789ff057af5900eee00b32eec4539e5d2d2d6 /usr.bin/openssl | |
parent | 044ab23d734a4cf6c419b9fcefa6a38dfcb6024d (diff) |
Unbreak following elliptic curves to supported groups rename.
Reported by Katherine <luigi30 at gmail dot com> on tech@
Diffstat (limited to 'usr.bin/openssl')
-rw-r--r-- | usr.bin/openssl/s_cb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/openssl/s_cb.c b/usr.bin/openssl/s_cb.c index 835e99551b3..ec25515bf21 100644 --- a/usr.bin/openssl/s_cb.c +++ b/usr.bin/openssl/s_cb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: s_cb.c,v 1.10 2018/04/25 07:12:33 tb Exp $ */ +/* $OpenBSD: s_cb.c,v 1.11 2018/11/06 05:45:50 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -700,8 +700,8 @@ tlsext_cb(SSL * s, int client_server, int type, unsigned char *data, int len, extname = "cert type"; break; - case TLSEXT_TYPE_elliptic_curves: - extname = "elliptic curves"; + case TLSEXT_TYPE_supported_groups: + extname = "supported groups"; break; case TLSEXT_TYPE_ec_point_formats: |