Changeset 30907 in vbox for trunk/src/VBox/Main/ConsoleImpl.cpp
- Timestamp:
- Jul 19, 2010 11:32:16 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl.cpp
r30899 r30907 887 887 if (SUCCEEDED(hrc) && value == "1") 888 888 { 889 fProvideGuestCredentials = TRUE; 889 /* Provide credentials only if there are no logged in users. */ 890 Bstr noLoggedInUsersValue; 891 ULONG64 ul64Timestamp = 0; 892 Bstr flags; 893 894 hrc = getGuestProperty(Bstr("/VirtualBox/GuestInfo/OS/NoLoggedInUsers"), 895 noLoggedInUsersValue.asOutParam(), &ul64Timestamp, flags.asOutParam()); 896 897 if (SUCCEEDED(hrc) && noLoggedInUsersValue != Bstr("false")) 898 { 899 fProvideGuestCredentials = TRUE; 900 } 890 901 } 891 902
Note:
See TracChangeset
for help on using the changeset viewer.