Changeset 23855 in vbox
- Timestamp:
- Oct 19, 2009 11:53:08 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 53623
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/freebsd/HostHardwareFreeBSD.cpp
r23628 r23855 386 386 #ifdef VBOX_WITH_DBUS 387 387 if ( RT_SUCCESS(rc) 388 && RT_SUCCESS( VBoxLoadDBusLib())388 && RT_SUCCESS(RTDBusLoadLib()) 389 389 && (!success || testing())) 390 390 rc = getUSBDeviceInfoFromHal(&mDeviceList, &halSuccess); … … 431 431 432 432 mContext = new Context; 433 if (RT_SUCCESS( VBoxLoadDBusLib()))433 if (RT_SUCCESS(RTDBusLoadLib())) 434 434 { 435 435 for (unsigned i = 0; RT_SUCCESS(rc) && i < 5 && !mContext->mConnection; ++i) -
trunk/src/VBox/Main/linux/HostHardwareLinux.cpp
r23848 r23855 1025 1025 #ifdef VBOX_WITH_DBUS 1026 1026 if ( RT_SUCCESS(rc) 1027 && RT_SUCCESS( VBoxLoadDBusLib())1027 && RT_SUCCESS(RTDBusLoadLib()) 1028 1028 && (!success || testing())) 1029 1029 rc = getUSBDeviceInfoFromHal(&mDeviceList, &halSuccess); … … 1070 1070 1071 1071 mContext = new Context; 1072 if (RT_SUCCESS( VBoxLoadDBusLib()))1072 if (RT_SUCCESS(RTDBusLoadLib())) 1073 1073 { 1074 1074 for (unsigned i = 0; RT_SUCCESS(rc) && i < 5 && !mContext->mConnection; ++i)
Note:
See TracChangeset
for help on using the changeset viewer.