Changeset 44912 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Mar 4, 2013 2:45:14 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo.cpp
r44911 r44912 628 628 VBoxServiceError("ConsoleKit: unable to retrieve user for session '%s' (msg type=%d): %s", 629 629 *ppszCurSession, dbus_message_get_type(pMsgUnixUser), 630 dbus_error_is_set(&dbErr) ? dbErr.message : "No error information available \n");630 dbus_error_is_set(&dbErr) ? dbErr.message : "No error information available"); 631 631 632 632 if (pMsgUnixUser) … … 640 640 VBoxServiceError("ConsoleKit: unable to retrieve session parameters (msg type=%d): %s", 641 641 dbus_message_get_type(pMsgSessions), 642 dbus_error_is_set(&dbErr) ? dbErr.message : "No error information available \n");642 dbus_error_is_set(&dbErr) ? dbErr.message : "No error information available"); 643 643 } 644 644 dbus_message_unref(pReplySessions); … … 657 657 VBoxServiceError("Unable to invoke ConsoleKit (%d/3) -- maybe not installed / used? Error: %s\n", 658 658 s_iBitchedAboutConsoleKit, 659 dbus_error_is_set(&dbErr) ? dbErr.message : "No error information available \n");659 dbus_error_is_set(&dbErr) ? dbErr.message : "No error information available"); 660 660 } 661 661 … … 668 668 if (s_iBitchedAboutDBus++ < 3) 669 669 VBoxServiceError("Unable to connect to system D-Bus (%d/3): %s\n", s_iBitchedAboutDBus, 670 pConnection && dbus_error_is_set(&dbErr) ? dbErr.message : "D-Bus not installed \n");670 pConnection && dbus_error_is_set(&dbErr) ? dbErr.message : "D-Bus not installed"); 671 671 } 672 672
Note:
See TracChangeset
for help on using the changeset viewer.