summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorwillmafh <willmafh@hotmail.com>2024-03-01 21:12:21 +0800
committerTomas Mraz <tomas@openssl.org>2024-05-13 11:10:35 +0200
commitfa4ee4043473185a5894274a2fa7fa2c4dc15a3c (patch)
tree34ce32abfc73245b8db494904576a2810ad62d0e /crypto
parent87314d24c4f025df1ebf47dc527cc8a96bef354a (diff)
Typo fixes
and an addition of an empty line to follow the code style CLA: trivial Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/23721)
Diffstat (limited to 'crypto')
-rw-r--r--crypto/objects/obj_dat.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/objects/obj_dat.pl b/crypto/objects/obj_dat.pl
index 60a5e5a683..715c06e032 100644
--- a/crypto/objects/obj_dat.pl
+++ b/crypto/objects/obj_dat.pl
@@ -134,7 +134,7 @@ for (my $i = 0; $i < $n; $i++) {
my $r = &der_it($v);
my $z = "";
my $length = 0;
- # Format using fixed-with because we use strcmp later.
+ # Format using fixed-width because we use strcmp later.
foreach (unpack("C*",$r)) {
$z .= sprintf("0x%02X,", $_);
$length++;