summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorDimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com>2024-02-14 10:03:05 +0100
committerTomas Mraz <tomas@openssl.org>2024-04-10 09:24:15 +0200
commit15eb7b6875e5d717c1bb47a4e6022fd8a9fa3adb (patch)
tree91b15e48131a29a019c4edcc33ce6492af21b05f /util
parent9b87c5a3ffa1ca233be96dd0bce812c04bad53fe (diff)
Fix typos found by codespell
Reviewed-by: Todd Short <todd.short@me.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/24013)
Diffstat (limited to 'util')
-rw-r--r--util/perl/TLSProxy/Proxy.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/perl/TLSProxy/Proxy.pm b/util/perl/TLSProxy/Proxy.pm
index 06ee7c1178..c4f3a0a549 100644
--- a/util/perl/TLSProxy/Proxy.pm
+++ b/util/perl/TLSProxy/Proxy.pm
@@ -323,7 +323,7 @@ sub clientstart
{
my ($self) = shift;
- my $succes = 1;
+ my $success = 1;
if ($self->execute) {
my $pid;
@@ -450,7 +450,7 @@ sub clientstart
if ($ctr >= 10) {
kill(3, $self->{serverpid});
print "No progress made\n";
- $succes = 0;
+ $success = 0;
}
END:
@@ -482,7 +482,7 @@ sub clientstart
print "Waiting for s_client process to close: $pid...\n";
waitpid($pid, 0);
- return $succes;
+ return $success;
}
sub process_packet