1
0
mirror of https://github.com/c-kr/check_json.git synced 2024-11-23 19:03:49 +01:00

docs + indent

This commit is contained in:
Herman van Rink 2021-05-15 22:55:29 +02:00
parent 2d14c35db8
commit c6ed8def7d
No known key found for this signature in database
GPG Key ID: 9D317CDE2CCC962F

View File

@ -99,19 +99,19 @@ $np->add_arg(
$np->add_arg(
spec => 'cacert|C=s',
default => '',
help => "-T, --cacert /foo/ca.crt \n "
help => "-C, --cacert /foo/ca.crt \n "
. "Ca certificate ",
);
$np->add_arg(
spec => 'client-cert|J=s',
default => '',
help => "-T, --httpclientcert /foo/bar.crt \n "
help => "-J, --client-cert /foo/bar.crt \n "
. "Client certificate ",
);
$np->add_arg(
spec => 'private-key|K=s',
default => '',
help => "-T, --httpprivatekey /foo/bar.key \n "
help => "-K, --private-key /foo/bar.key \n "
. "Client certificate keyfile",
);
@ -145,7 +145,6 @@ if ($np->opts->httpclientcert) {
SSL_cert_file => $np->opts->httpclientcert,
SSL_key_file => $np->opts->httpprivatekey,
);
}
if ($np->opts->verbose) { (print Dumper ($ua))};