1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-25 09:12:24 +00:00

Surround process protection with an #ifndef UNPROTECT

(cherry picked from commit 8b65fef55c)
This commit is contained in:
Owen Dunn 2015-11-24 23:12:33 +00:00 committed by Simon Tatham
parent db910f712c
commit 7346e9bc4b

View File

@ -395,15 +395,14 @@ int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show)
* Protect our process * Protect our process
*/ */
{ {
char *error = NULL; #ifndef UNPROTECT
char *error = NULL;
if (! setprocessacl(error)) { if (! setprocessacl(error)) {
/* FIXME: prepare to stuff this into event log somehow */ logevent(NULL, "Could not restrict process ACL: %s",
MessageBox(NULL, "Process protection", error);
error, MB_OK | MB_ICONEXCLAMATION); }
} sfree(error);
sfree(error); #endif
} }
/* /*
* Process the command line. * Process the command line.