The AutoMounter now also compiles for Haiku again, sorry!

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21668 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2007-07-19 18:14:38 +00:00
parent 93a30169f3
commit 95163879aa

@ -101,10 +101,11 @@ AutoMounter::_MountVolumes(mount_mode normal, mount_mode removable,
class InitialMountVisitor : public BDiskDeviceVisitor { class InitialMountVisitor : public BDiskDeviceVisitor {
public: public:
InitialMountVisitor(mount_mode normalMode, mount_mode removableMode, InitialMountVisitor(mount_mode normalMode, mount_mode removableMode,
BMessage& previous) bool initialRescan, BMessage& previous)
: :
fNormalMode(normalMode), fNormalMode(normalMode),
fRemovableMode(removableMode), fRemovableMode(removableMode),
fInitialRescan(initialRescan),
fPrevious(previous) fPrevious(previous)
{ {
} }
@ -145,11 +146,13 @@ AutoMounter::_MountVolumes(mount_mode normal, mount_mode removable,
return false; return false;
} }
if (partition->Mount() == B_OK) { BPath path;
if (partition->Mount() == B_OK
&& partition->GetMountPoint(&path) == B_OK) {
// notify Tracker that a new volume has been started // notify Tracker that a new volume has been started
BMessage note(kVolumeMounted); BMessage note(kVolumeMounted);
note.AddString("path", partition->MountedAt()); note.AddString("path", path.Path());
note.AddBool("initial rescan", sInitialRescan); note.AddBool("initial rescan", fInitialRescan);
be_app->PostMessage(&note); be_app->PostMessage(&note);
} }
return false; return false;
@ -158,8 +161,9 @@ AutoMounter::_MountVolumes(mount_mode normal, mount_mode removable,
private: private:
mount_mode fNormalMode; mount_mode fNormalMode;
mount_mode fRemovableMode; mount_mode fRemovableMode;
bool fInitialRescan;
BMessage& fPrevious; BMessage& fPrevious;
} visitor(normal, removable, fSettings); } visitor(normal, removable, initialRescan, fSettings);
BDiskDeviceList devices; BDiskDeviceList devices;
status_t status = devices.Fetch(); status_t status = devices.Fetch();