diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-09-17 08:55:32 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-09-17 08:55:32 +0000 |
commit | c5cca4d05933b1f3b130c19cb044e98c51552a7d (patch) | |
tree | 04b4654884a7086cc1e2eaaa4949637defa81ae1 | |
parent | 0db04c4f561ff487ddc92642f3a3f22030afa2ae (diff) |
fixed the stunnel PEM path
-rw-r--r-- | tests/ftpsserver.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ftpsserver.pl b/tests/ftpsserver.pl index 995012b42..e7a5163bd 100644 --- a/tests/ftpsserver.pl +++ b/tests/ftpsserver.pl @@ -40,7 +40,7 @@ do { my $path = `pwd`; chomp $path; -my $cmd = "$stunnel -p $path/data/stunnel.pem -P $path/.ftps.pid -d $port -r $ftp"; +my $cmd = "$stunnel -p $path/stunnel.pem -P $path/.ftps.pid -d $port -r $ftp"; if($verbose) { print "FTPS server: $cmd\n"; |