Changeset 50026 in vbox for trunk/src/VBox/Additions/common/VBoxService
- Timestamp:
- Jan 6, 2014 4:37:22 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo.cpp
r47973 r50026 554 554 && RT_SUCCESS(rc)) 555 555 { 556 # ifdef RT_OS_DARWIN /* No ut_user->ut_session on Darwin */556 # ifdef RT_OS_DARWIN /* No ut_user->ut_session on Darwin */ 557 557 VBoxServiceVerbose(4, "Found entry \"%s\" (type: %d, PID: %RU32)\n", 558 558 ut_user->ut_user, ut_user->ut_type, ut_user->ut_pid); 559 # else559 # else 560 560 VBoxServiceVerbose(4, "Found entry \"%s\" (type: %d, PID: %RU32, session: %RU32)\n", 561 561 ut_user->ut_user, ut_user->ut_type, ut_user->ut_pid, ut_user->ut_session); 562 # endif562 # endif 563 563 if (cUsersInList > cListSize) 564 564 { … … 590 590 } 591 591 592 # ifdef VBOX_WITH_DBUS593 # if defined(RT_OS_LINUX) /* Not yet for Solaris/FreeBSB. */592 # ifdef VBOX_WITH_DBUS 593 # if defined(RT_OS_LINUX) /* Not yet for Solaris/FreeBSB. */ 594 594 DBusError dbErr; 595 595 DBusConnection *pConnection = NULL; … … 783 783 && dbus_error_is_set(&dbErr)) 784 784 dbus_error_free(&dbErr); 785 # endif /* RT_OS_LINUX */786 # endif /* VBOX_WITH_DBUS */785 # endif /* RT_OS_LINUX */ 786 # endif /* VBOX_WITH_DBUS */ 787 787 788 788 /** @todo Fedora/others: Handle systemd-loginctl. */ … … 819 819 820 820 endutxent(); /* Close utmpx file. */ 821 #endif 821 #endif /* !RT_OS_WINDOWS && !RT_OS_FREEBSD && !RT_OS_HAIKU && !RT_OS_OS2 */ 822 822 823 Assert(RT_FAILURE(rc) || cUsersInList == 0 || (pszUserList && *pszUserList)); 823 824
Note:
See TracChangeset
for help on using the changeset viewer.