Skip to content

Commit 128a7dd

Browse files
committed
Fix incorrect indent issue with if statement
1 parent edb8cc0 commit 128a7dd

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Diff for: Verify.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
require 5.010;
77

8-
our $VERSION = '0.20';
8+
our $VERSION = '0.21';
99

1010
use Crypt::OpenSSL::X509;
1111

Diff for: Verify.xs

+4-2
Original file line numberDiff line numberDiff line change
@@ -273,11 +273,13 @@ SV * new(class, ...)
273273

274274

275275
if (items > 1) {
276-
if (ST(1) != NULL)
276+
if (ST(1) != NULL) {
277277
// TODO: ensure_string_sv
278278
CAfile = ST(1);
279-
if (strlen(SvPV_nolen(CAfile)) == 0)
279+
if (strlen(SvPV_nolen(CAfile)) == 0) {
280280
CAfile = NULL;
281+
}
282+
}
281283

282284
if (items > 2)
283285
options = ensure_hv(ST(2), "options");

0 commit comments

Comments
 (0)