From d54952f5ec8ee261afea81fb71006d0e35884624 Mon Sep 17 00:00:00 2001 From: kramm Date: Wed, 12 Nov 2008 10:28:49 +0000 Subject: [PATCH] always elevate on Vista --- installer/installer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/installer.c b/installer/installer.c index 08e3c0e..85f91be 100644 --- a/installer/installer.c +++ b/installer/installer.c @@ -425,7 +425,7 @@ BOOL CALLBACK PropertySheetFunc2(HWND hwnd, UINT message, WPARAM wParam, LPARAM } } if(message == WM_NOTIFY && (((LPNMHDR)lParam)->code == PSN_SETACTIVE)) { - if(!elevated && !has_full_access && config_forAllUsers) { + if(!elevated && !has_full_access) { OSVERSIONINFO winverinfo; memset(&winverinfo, 0, sizeof(OSVERSIONINFO)); winverinfo.dwOSVersionInfoSize = sizeof(winverinfo); -- 1.7.10.4