File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ inventory:
66* fix #700: Add TacticalRMM Remote_Mgmt support for MacOSX
77* fix #711: Update Bitdefender AV support on Windows, and also update enable support
88 on Windows Server OS.
9+ * fix #716: Don't fail on regexp error while running from a user folder which contains
10+ a parenthesis
911
1012netdiscovery/netinventory:
1113* Skip Konica printers firmware with "Registered" set as version
Original file line number Diff line number Diff line change @@ -659,7 +659,7 @@ sub _KeyChain_or_KeyStore_Export {
659659 # Convert each crt file to base64 encoded cer file and concatenate in certchain file
660660 File::Glob-> require();
661661 foreach my $certfile (File::Glob::bsd_glob(" $certdir /*" )) {
662- if ($certfile =~ m {^ $certdir /(.* \. crt)$} ) {
662+ if ($certfile =~ m {/([^/]+ \. crt)$} ) {
663663 getAllLines(
664664 command => " certutil -encode $1 temp.cer" ,
665665 logger => $logger
You can’t perform that action at this time.
0 commit comments