diff options
author | tb <> | 2023-07-02 14:54:37 +0000 |
---|---|---|
committer | tb <> | 2023-07-02 14:54:37 +0000 |
commit | d6b82238500e9e8c9ae56068609fce2a94ef7b96 (patch) | |
tree | 7d978583fff5c02a7a2a26596fa89469ed9e03c0 /src | |
parent | 83d77ecb350fdf7c518700f2c393bc884a4a4c0c (diff) | |
download | openbsd-d6b82238500e9e8c9ae56068609fce2a94ef7b96.tar.gz openbsd-d6b82238500e9e8c9ae56068609fce2a94ef7b96.tar.bz2 openbsd-d6b82238500e9e8c9ae56068609fce2a94ef7b96.zip |
Fix typo in previous
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/ec/eck_prn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ec/eck_prn.c b/src/lib/libcrypto/ec/eck_prn.c index 598b83835f..25965ed962 100644 --- a/src/lib/libcrypto/ec/eck_prn.c +++ b/src/lib/libcrypto/ec/eck_prn.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: eck_prn.c,v 1.24 2023/07/02 14:53:18 tb Exp $ */ | 1 | /* $OpenBSD: eck_prn.c,v 1.25 2023/07/02 14:54:37 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Written by Nils Larsch for the OpenSSL project. | 3 | * Written by Nils Larsch for the OpenSSL project. |
4 | */ | 4 | */ |
@@ -290,7 +290,7 @@ ecpk_print_explicit_parameters(BIO *bp, const EC_GROUP *group, int off) | |||
290 | if (form == POINT_CONVERSION_COMPRESSED) | 290 | if (form == POINT_CONVERSION_COMPRESSED) |
291 | conversion_form = "compressed"; | 291 | conversion_form = "compressed"; |
292 | else if (form == POINT_CONVERSION_UNCOMPRESSED) | 292 | else if (form == POINT_CONVERSION_UNCOMPRESSED) |
293 | conversion_form = "compressed"; | 293 | conversion_form = "uncompressed"; |
294 | else if (form == POINT_CONVERSION_HYBRID) | 294 | else if (form == POINT_CONVERSION_HYBRID) |
295 | conversion_form = "hybrid"; | 295 | conversion_form = "hybrid"; |
296 | else | 296 | else |