all: fix codespell errors

Reviewed-by: Jay Satiro
Reviewed-by: Daniel Stenberg
Closes https://github.com/curl/curl/pull/5452
This commit is contained in:
Viktor Szakats 2020-05-25 19:44:04 +00:00
parent 54d122287c
commit 308c243db5
No known key found for this signature in database
GPG key ID: 9C01E9B68B91DE4D
22 changed files with 31 additions and 31 deletions

View file

@ -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