https://git.reactos.org/?p=reactos.git;a=commitdiff;h=eb7be7000705f8be29f51e...
commit eb7be7000705f8be29f51e387e23ce8e746bd8a7 Author: Eric Kohl eric.kohl@reactos.org AuthorDate: Sun Dec 29 10:09:56 2019 +0100 Commit: Eric Kohl eric.kohl@reactos.org CommitDate: Sun Dec 29 10:10:43 2019 +0100
[SYSSETUP] Start the dnscache service after the network support has been installed
CORE-16558 --- dll/win32/syssetup/install.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/dll/win32/syssetup/install.c b/dll/win32/syssetup/install.c index 7ce1aaa3ffa..5f5f92bcf7f 100644 --- a/dll/win32/syssetup/install.c +++ b/dll/win32/syssetup/install.c @@ -756,6 +756,7 @@ InstallLiveCD(VOID) /* Start the TCP/IP protocol driver */ SetupStartService(L"Tcpip", FALSE); SetupStartService(L"Dhcp", FALSE); + SetupStartService(L"Dnscache", FALSE); }
/* Register components */ @@ -1274,6 +1275,7 @@ InstallReactOS(VOID) /* Start the TCP/IP protocol driver */ SetupStartService(L"Tcpip", FALSE); SetupStartService(L"Dhcp", FALSE); + SetupStartService(L"Dnscache", FALSE); }
InstallWizard();