Changeset 20721 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Jun 19, 2009 12:28:41 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo-win.cpp
r20698 r20721 196 196 } 197 197 198 VBoxServiceVerbose(3, "Users: Session data: Name = %ls, Len = %d, SID = %s, LogonID = %d,%d\n", 198 VBoxServiceVerbose(3, "Users: Session data: Name = %ls, Len = %d, SID = %s, LogonID = %d,%d\n", 199 199 (sessionData->UserName).Buffer, (sessionData->UserName).Length, (sessionData->Sid != NULL) ? "1" : "0", sessionData->LogonId.HighPart, sessionData->LogonId.LowPart); 200 200 … … 237 237 238 238 /* Only handle users which can login interactively or logged in remotely over native RDP. */ 239 if ( (((SECURITY_LOGON_TYPE)sessionData->LogonType == Interactive) 239 if ( (((SECURITY_LOGON_TYPE)sessionData->LogonType == Interactive) 240 240 || ((SECURITY_LOGON_TYPE)sessionData->LogonType == RemoteInteractive)) 241 241 && (sessionData->Sid != NULL)) … … 381 381 { 382 382 RegCloseKey (hKey); 383 VBoxServiceError("Failed to query registry key (version)! Error: % Rrc\n", rc);383 VBoxServiceError("Failed to query registry key (version)! Error: %u\n", rc); 384 384 return 1; 385 385 }
Note:
See TracChangeset
for help on using the changeset viewer.