Skip to content

Commit

Permalink
1.14.7
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidXanatos committed Sep 16, 2024
1 parent 8d8f63e commit 09f1666
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sandboxie/core/drv/verify.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ typedef union _SCertInfo {
// Other features, available with any cert: "UseRamDisk", "ForceUsbDrives",
// as well as Automatic Updates, etc....

unsigned long expirers_in_sec;
long expirers_in_sec;
};
} SCertInfo;

Expand Down
2 changes: 1 addition & 1 deletion SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1328,7 +1328,7 @@ void CSettingsWindow::UpdateCert()
if(g_CertInfo.expirers_in_sec > 0)
Info.append(tr("Expires in: %1 days").arg(g_CertInfo.expirers_in_sec / (60*60*24)));
else if(g_CertInfo.expirers_in_sec < 0)
Info.append(tr("Expired: %1 days ago").arg(g_CertInfo.expirers_in_sec / (60*60*24)));
Info.append(tr("Expired: %1 days ago").arg(-g_CertInfo.expirers_in_sec / (60*60*24)));

QStringList Options;
if (g_CertInfo.opt_sec) Options.append("SBox");
Expand Down

0 comments on commit 09f1666

Please sign in to comment.