diff options
-rwxr-xr-x | selftest/selftest.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/selftest/selftest.pl b/selftest/selftest.pl index 7d40db5371..cf25fa149a 100755 --- a/selftest/selftest.pl +++ b/selftest/selftest.pl @@ -752,7 +752,8 @@ sub setup_env($) my $option = $name; $envname =~ s/:.*//; - $option =~ s/^[^:]*://; + $option =~ s/^[^:]*//; + $option =~ s/^://; $option = "client" if $option eq ""; |