mirror of
https://github.com/curl/curl.git
synced 2026-06-01 20:44:15 +03:00
Fix trying to return outside of a subroutine
This commit is contained in:
parent
35212da048
commit
9b86eecb94
1 changed files with 1 additions and 1 deletions
|
|
@ -60,7 +60,7 @@ my $conffile="$path/stunnel.conf"; # stunnel configuration data
|
|||
my $certfile="$srcdir/stunnel.pem"; # stunnel server certificate
|
||||
my $pidfile="$path/.$proto.pid"; # stunnel process pid file
|
||||
|
||||
open(CONF, ">$conffile") || return 1;
|
||||
open(CONF, ">$conffile") || exit 1;
|
||||
print CONF "
|
||||
CApath=$path
|
||||
cert = $certfile
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue