Skip to content

Commit

Permalink
Added .msu and .cab to list of extensions with signatures.
Browse files Browse the repository at this point in the history
  • Loading branch information
lazyhamster committed Apr 15, 2023
1 parent ec75cd1 commit 47fee00
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/trust.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

bool FileCanHaveSignature(const wchar_t* path)
{
static const wchar_t* SignatureExtensions[] = { L".exe", L".dll", L".msi" };
static const wchar_t* SignatureExtensions[] = { L".exe", L".dll", L".msi", L".msu", L".cab"};

const wchar_t* ext = PathFindExtension(path);
for (int i = 0; i < _countof(SignatureExtensions); ++i)
Expand Down
2 changes: 1 addition & 1 deletion source/version.m4i
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
m4_define(VMAJOR, `2')m4_dnl
m4_define(VMINOR, `8')m4_dnl
m4_define(VREVISION, `2')m4_dnl
m4_define(VREVISION, `3')m4_dnl
m4_define(PLUGIN_VERSION, `VMAJOR.VMINOR.VREVISION')m4_dnl

0 comments on commit 47fee00

Please sign in to comment.