Subject: | [PATCH] GetOptions issue in eg/net-ssl-test |
There's a backslash missing in the GetOptions call of the
eg/net-ssl-test script. See the attached patch.
Regards,
Slaven
Subject: | net-ssl-test.patch |
--- net-ssl-test.orig 2008-09-17 18:28:38.000000000 +0200
+++ net-ssl-test 2008-09-17 18:28:46.000000000 +0200
@@ -13,7 +13,7 @@
use Getopt::Long;
&GetOptions ('p:s' => \$opt_p,
'proxy:s' => \$opt_p,
- 'bench:n' => $opt_bench,
+ 'bench:n' => \$opt_bench,
'd' => \$opt_debug,
'version:i' => \$opt_version,
'v:i' => \$opt_version,