| Summary: | Detection of msdosfs/vfat still wrong on FreeBSD | ||
|---|---|---|---|
| Product: | [Applications] amarok | Reporter: | Bartosz Fabianowski <freebsd> |
| Component: | general | Assignee: | Amarok Bugs <amarok-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.4.5 | ||
| Target Milestone: | --- | ||
| Platform: | FreeBSD Ports | ||
| OS: | FreeBSD | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | Fix for msdosfs/vfat detection on FreeBSD | ||
|
Description
Bartosz Fabianowski
2007-02-13 00:21:19 UTC
Created attachment 19653 [details]
Fix for msdosfs/vfat detection on FreeBSD
The last sentence of my bug report (I will submit it to the Amarok bug tracker as well.) made no sense of course. Copy & past... sorry about that :) Thank you! this has been applied in svn revision 638461 and should be availible in Amaork 1.4.6 (whenever that comes). SVN commit 638463 by mitchell:
Complete FreeBSD FAT filesystem detection
BUG: 141614
M +1 -1 mediadevicemanager.cpp
--- branches/stable/extragear/multimedia/amarok/src/mediadevicemanager.cpp #638462:638463
@@ -114,7 +114,7 @@
{
if ( m->fsType() == "manual" ||
( !m->deviceNode().startsWith( "/dev/hd" ) &&
- (m->fsType() == "vfat" || m->fsType() == "hfsplus") ) )
+ (m->fsType() == "vfat" || m->fsType() == "hfsplus" || m->fsType() == "msdosfs" ) ) )
// add other fsTypes that should be auto-detected here later
{
if ( m_mediumMap.contains( m->name() ) )
|