Author: fireball
Date: Wed Oct 22 13:10:17 2008
New Revision: 36896
URL: http://svn.reactos.org/svn/reactos?rev=36896&view=rev
Log:
- Typo fix.
See issue #3804 for more details.
Modified:
trunk/reactos/ntoskrnl/ex/shutdown.c
Modified: trunk/reactos/ntoskrnl/ex/shutdown.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ex/shutdown.c?rev…
==============================================================================
--- trunk/reactos/ntoskrnl/ex/shutdown.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ex/shutdown.c [iso-8859-1] Wed Oct 22 13:10:17 2008
@@ -87,7 +87,7 @@
"Until then, there must be no regrets, no fears, no anxieties.\n"
"Just go forward in all your beliefs, and prove to me that I am not mistaken in\n"
"mine.\n",
- "Lowest possible energy state reached! Switch off now to achive a Bose-Einstein\n"
+ "Lowest possible energy state reached! Switch off now to achieve a Bose-Einstein\n"
"condensate.\n",
"Hasta la vista, BABY!\n",
"They live, we sleep!\n",
Author: sginsberg
Date: Wed Oct 22 08:59:01 2008
New Revision: 36894
URL: http://svn.reactos.org/svn/reactos?rev=36894&view=rev
Log:
- Notify umpnpmgr about logon after the shell has initialized
- This makes it possible to progress if userinit crashes due to heavy debug output (due to timing issues in its communication with umpnpmgr), which would leave you stranded with no shell. Not really a hack, as it doesn't hide or fix the crash -- just limits it to a missing "Pending device installations" prompt in case there are any pending. Also, it appears to be done the same way on Windows.
Modified:
trunk/reactos/base/system/userinit/userinit.c
Modified: trunk/reactos/base/system/userinit/userinit.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/userinit/useri…
==============================================================================
--- trunk/reactos/base/system/userinit/userinit.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/userinit/userinit.c [iso-8859-1] Wed Oct 22 08:59:01 2008
@@ -580,9 +580,9 @@
IN LPWSTR lpszCmdLine,
IN int nCmdShow)
{
- NotifyLogon();
SetUserSettings();
StartShell();
+ NotifyLogon();
return 0;
}