From 385b37aba7e43cb6915968c894d2b8b8c84fb1e3 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Sat, 29 Mar 2014 20:39:50 +0000 Subject: [PATCH] [SYSSETUP] Extend the maximum password length to 127 characters for unattended setup too. CORE-7762 #comment Fixed it! Thanks a lot! svn path=/trunk/; revision=62580 --- reactos/dll/win32/syssetup/globals.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/win32/syssetup/globals.h b/reactos/dll/win32/syssetup/globals.h index f6764808e6a..06e18aec22c 100644 --- a/reactos/dll/win32/syssetup/globals.h +++ b/reactos/dll/win32/syssetup/globals.h @@ -45,7 +45,7 @@ typedef struct _SETUPDATA WCHAR OwnerName[51]; WCHAR OwnerOrganization[51]; WCHAR ComputerName[MAX_COMPUTERNAME_LENGTH + 1]; /* max. 15 characters */ - WCHAR AdminPassword[15]; /* max. 14 characters */ + WCHAR AdminPassword[128]; /* max. 127 characters */ BOOL UnattendSetup; BOOL DisableVmwInst;