diff options
author | Brent Cook <bcook@cvs.openbsd.org> | 2017-08-13 21:10:43 +0000 |
---|---|---|
committer | Brent Cook <bcook@cvs.openbsd.org> | 2017-08-13 21:10:43 +0000 |
commit | 60976aef2e88bbab35254bb5e3d10ef4b6505227 (patch) | |
tree | cde3e6ed831a96fc16e7b78e0e1ce3a1c1358284 /lib/libssl | |
parent | 22b29d1c4189c18febcdea6167ef96c78928ccbc (diff) |
match function implementation with declaration, ok beck@, doug@
Diffstat (limited to 'lib/libssl')
-rw-r--r-- | lib/libssl/t1_lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/t1_lib.c b/lib/libssl/t1_lib.c index c141dcef317..d71067d73cc 100644 --- a/lib/libssl/t1_lib.c +++ b/lib/libssl/t1_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: t1_lib.c,v 1.133 2017/08/13 16:28:45 jsing Exp $ */ +/* $OpenBSD: t1_lib.c,v 1.134 2017/08/13 21:10:42 bcook Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -270,7 +270,7 @@ tls1_ec_curve_id2nid(const uint16_t curve_id) } uint16_t -tls1_ec_nid2curve_id(int nid) +tls1_ec_nid2curve_id(const int nid) { /* ECC curves from draft-ietf-tls-ecc-12.txt (Oct. 17, 2005) */ switch (nid) { |