diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2018-09-01 16:23:16 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2018-09-01 16:23:16 +0000 |
commit | 1dd9c05ab180639c12451698df914eda307327f6 (patch) | |
tree | 004e2f641bfd81678be74f4b0e6ae4fcc377b410 /lib | |
parent | a85f06c8b565f245ef061243fce22338aa442a94 (diff) |
Tweak comment.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/ec/ec_asn1.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/libcrypto/ec/ec_asn1.c b/lib/libcrypto/ec/ec_asn1.c index 4b950dba80a..f69dd023de9 100644 --- a/lib/libcrypto/ec/ec_asn1.c +++ b/lib/libcrypto/ec/ec_asn1.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ec_asn1.c,v 1.30 2018/07/15 16:27:39 tb Exp $ */ +/* $OpenBSD: ec_asn1.c,v 1.31 2018/09/01 16:23:15 tb Exp $ */ /* * Written by Nils Larsch for the OpenSSL project. */ @@ -1564,10 +1564,7 @@ o2i_ECPublicKey(EC_KEY ** a, const unsigned char **in, long len) EC_KEY *ret = NULL; if (a == NULL || (*a) == NULL || (*a)->group == NULL) { - /* - * sorry, but a EC_GROUP-structur is necessary to set the - * public key - */ + /* An EC_GROUP structure is necessary to set the public key. */ ECerror(ERR_R_PASSED_NULL_PARAMETER); return 0; } |