Changeset 37638 in vbox
- Timestamp:
- Jun 24, 2011 3:13:39 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 72488
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxGINA/VBoxGINA.cpp
r36446 r37638 113 113 114 114 Log(("VBoxGINA::WlxNegotiate: dwWinlogonVersion: %ld\n", dwWinlogonVersion)); 115 116 /* Load global configuration from registry. */117 DWORD dwRet = loadConfiguration();118 if (ERROR_SUCCESS != dwRet)119 Log(("VBoxGINA: Error loading global configuration, error=%ld\n", dwRet));120 121 /* If we have a remote session (that is, a connection via remote desktop /122 * terminal services) deny it if not specified explicitly. */123 if (!handleCurrentSession())124 Log(("VBoxGINA: Handling of remote desktop sessions is disabled.\n"));125 115 126 116 /* Load the standard Microsoft GINA DLL. */ … … 257 247 hGinaWlx = hWlx; 258 248 249 /* Load global configuration from registry. */ 250 DWORD dwRet = loadConfiguration(); 251 if (ERROR_SUCCESS != dwRet) 252 LogRel(("VBoxGINA: Error loading global configuration, error=%ld\n", dwRet)); 253 254 /* If we have a remote session (that is, a connection via remote desktop / 255 * terminal services) deny it if not specified explicitly. */ 256 if (!handleCurrentSession()) 257 LogRel(("VBoxGINA: Handling of remote desktop sessions is disabled.\n")); 258 259 259 /* hook the dialogs */ 260 260 hookDialogBoxes(pWlxFuncs, wlxVersion);
Note:
See TracChangeset
for help on using the changeset viewer.