Skip to content
Snippets Groups Projects
Commit 9b86eecb authored by Yang Tse's avatar Yang Tse
Browse files

Fix trying to return outside of a subroutine

parent 35212da0
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment