diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-06-03 19:26:54 (GMT) |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-11-08 22:19:20 (GMT) |
commit | a27f34583292ef485fb862c6d60d277d91b9d0de (patch) | |
tree | f349e58366ccdf30010b3cbe8452771f1193a281 /src/Setup | |
parent | 08e653c9261b7291cfc31738c8f400e70d29432a (diff) | |
download | VeraCrypt-a27f34583292ef485fb862c6d60d277d91b9d0de.zip VeraCrypt-a27f34583292ef485fb862c6d60d277d91b9d0de.tar.gz |
Set the publisher to IDRIX in the uninstaller registry key.
Diffstat (limited to 'src/Setup')
-rw-r--r-- | src/Setup/Setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Setup/Setup.c b/src/Setup/Setup.c index 5a49f43..996ecbc 100644 --- a/src/Setup/Setup.c +++ b/src/Setup/Setup.c @@ -654,7 +654,7 @@ BOOL DoRegInstall (HWND hwndDlg, char *szDestDir, BOOL bInstallType) if (RegSetValueEx (hkey, "DisplayName", 0, REG_SZ, (BYTE *) szTmp, strlen (szTmp) + 1) != ERROR_SUCCESS)
goto error;
- strcpy (szTmp, "VeraCrypt Foundation");
+ strcpy (szTmp, "IDRIX");
if (RegSetValueEx (hkey, "Publisher", 0, REG_SZ, (BYTE *) szTmp, strlen (szTmp) + 1) != ERROR_SUCCESS)
goto error;
|