summaryrefslogtreecommitdiff
path: root/tests/sshserver.pl
diff options
context:
space:
mode:
authorViktor Szakats <commit@vsz.me>2020-05-25 19:44:04 +0000
committerViktor Szakats <commit@vsz.me>2020-05-25 19:44:04 +0000
commit308c243db5b7425b454a981d4c0eb7bfac374b8b (patch)
treeb4c77e8a45ab1884ada4ad373a8e7bb97c787c74 /tests/sshserver.pl
parent54d122287c878188c5bbd4a659295f4ba27e137c (diff)
downloadcurl-308c243db5b7425b454a981d4c0eb7bfac374b8b.tar.gz
all: fix codespell errors
Reviewed-by: Jay Satiro Reviewed-by: Daniel Stenberg Closes https://github.com/curl/curl/pull/5452
Diffstat (limited to 'tests/sshserver.pl')
-rw-r--r--tests/sshserver.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sshserver.pl b/tests/sshserver.pl
index 1874b9388..24c98d630 100644
--- a/tests/sshserver.pl
+++ b/tests/sshserver.pl
@@ -1120,7 +1120,7 @@ if ($sshdid =~ /OpenSSH-Windows/) {
# Put an "exec" in front of the command so that the child process
# keeps this child's process ID by being tied to the spawned shell.
exec("exec $cmd") || die "Can't exec() $cmd: $!";
- # exec() will create a new process, but ties the existance of the
+ # exec() will create a new process, but ties the existence of the
# new process to the parent waiting perl.exe and sh.exe processes.
# exec() should never return back here to this process. We protect