Changeset 43927 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Nov 21, 2012 10:29:18 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 82241
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo.cpp
r43793 r43927 262 262 263 263 #if defined(VBOX_WITH_DBUS) && defined(RT_OS_LINUX) /* Not yet for Solaris/FreeBSB. */ 264 /* 264 /* 265 265 * Simple wrapper to work around compiler-specific va_list madness. 266 266 */ … … 388 388 char **ppszSessions; int cSessions; 389 389 if ( (dbus_message_get_type(pMsgSessions) == DBUS_MESSAGE_TYPE_METHOD_CALL) 390 && vboxService_dbus_message_get_args(pReplySessions, &dbErr, DBUS_TYPE_ARRAY, 391 DBUS_TYPE_OBJECT_PATH, &ppszSessions, &cSessions, 390 && vboxService_dbus_message_get_args(pReplySessions, &dbErr, DBUS_TYPE_ARRAY, 391 DBUS_TYPE_OBJECT_PATH, &ppszSessions, &cSessions, 392 392 DBUS_TYPE_INVALID /* Termination */)) 393 393 { … … 429 429 && ppwEntry->pw_name) 430 430 { 431 VBoxServiceVerbose(4, "ConsoleKit: session '%s' -> %s (uid: %RU32)\n", 431 VBoxServiceVerbose(4, "ConsoleKit: session '%s' -> %s (uid: %RU32)\n", 432 432 *ppszCurSession, ppwEntry->pw_name, uid); 433 433 … … 471 471 { 472 472 VBoxServiceError("ConsoleKit: unable to retrieve session parameters (msg type=%d): %s", 473 dbus_message_get_type(pMsgSessions), 473 dbus_message_get_type(pMsgSessions), 474 474 dbus_error_is_set(&dbErr) ? dbErr.message : "No error information available\n"); 475 475 } … … 566 566 567 567 if (pszUserList && cUsersInList > 0) 568 VBoxServicePropCacheUpdate(&g_VMInfoPropCache, "/VirtualBox/GuestInfo/OS/LoggedInUsersList", "%s", pszUserList);568 rc = VBoxServicePropCacheUpdate(&g_VMInfoPropCache, "/VirtualBox/GuestInfo/OS/LoggedInUsersList", "%s", pszUserList); 569 569 else 570 VBoxServicePropCacheUpdate(&g_VMInfoPropCache, "/VirtualBox/GuestInfo/OS/LoggedInUsersList", NULL); 571 VBoxServicePropCacheUpdate(&g_VMInfoPropCache, "/VirtualBox/GuestInfo/OS/LoggedInUsers", "%u", cUsersInList); 570 rc = VBoxServicePropCacheUpdate(&g_VMInfoPropCache, "/VirtualBox/GuestInfo/OS/LoggedInUsersList", NULL); 571 if (RT_FAILURE(rc)) 572 { 573 VBoxServiceError("VMInfo: Error writing logged on users list, rc=%Rrc\n", rc); 574 cUsersInList = 0; /* Reset user count on error. */ 575 } 576 577 rc = VBoxServicePropCacheUpdate(&g_VMInfoPropCache, "/VirtualBox/GuestInfo/OS/LoggedInUsers", "%u", cUsersInList); 578 if (RT_FAILURE(rc)) 579 { 580 VBoxServiceError("VMInfo: Error writing logged on users count, rc=%Rrc\n", rc); 581 cUsersInList = 0; /* Reset user count on error. */ 582 } 583 572 584 if (g_cVMInfoLoggedInUsers != cUsersInList) 573 585 { 574 VBoxServicePropCacheUpdate(&g_VMInfoPropCache, "/VirtualBox/GuestInfo/OS/NoLoggedInUsers", 575 cUsersInList == 0 ? "true" : "false"); 586 rc = VBoxServicePropCacheUpdate(&g_VMInfoPropCache, "/VirtualBox/GuestInfo/OS/NoLoggedInUsers", 587 cUsersInList == 0 ? "true" : "false"); 588 if (RT_FAILURE(rc)) 589 VBoxServiceError("VMInfo: Error writing no logged in users beacon, rc=%Rrc\n", rc); 576 590 g_cVMInfoLoggedInUsers = cUsersInList; 577 591 } 578 579 if (RT_SUCCESS(rc) && pszUserList) 592 if (pszUserList) 580 593 RTStrFree(pszUserList); 581 594 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.