Skip to content

Commit c3a0caf

Browse files
committed
Minor fix in "extension" regex
1 parent ced49f6 commit c3a0caf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ios_backup_extractor.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
kError => 2,
5353
};
5454

55-
my $s_extension_regex = qr{\.$wanted_extensions$}i;
55+
my $s_extension_regex = qr{\.(?:$wanted_extensions)$}i;
5656

5757
# define command line options
5858
my %cmd_options;

0 commit comments

Comments
 (0)