diff -u mountmanager-0.2.6/debian/changelog mountmanager-0.2.6/debian/changelog --- mountmanager-0.2.6/debian/changelog +++ mountmanager-0.2.6/debian/changelog @@ -1,3 +1,10 @@ +mountmanager (0.2.6-0ubuntu4) karmic; urgency=low + + * debian/patch/fix_ntfs-3g.patch: fix a coredump at startup when ntfs-3g is + installed (LP: #337337) (LP: #322049) (LP: #330317) + + -- Fabrice Coutadeur Thu, 25 Jun 2009 21:52:07 +0200 + mountmanager (0.2.6-0ubuntu3) karmic; urgency=low * debian/rules: fix a FTBFS by dropping the rights setting when installing diff -u mountmanager-0.2.6/debian/patches/series mountmanager-0.2.6/debian/patches/series --- mountmanager-0.2.6/debian/patches/series +++ mountmanager-0.2.6/debian/patches/series @@ -2,0 +3 @@ +fix_ntfs-3g.patch only in patch2: unchanged: --- mountmanager-0.2.6.orig/debian/patches/fix_ntfs-3g.patch +++ mountmanager-0.2.6/debian/patches/fix_ntfs-3g.patch @@ -0,0 +1,13 @@ +Index: mountmanager-0.2.6/sources/gui/optionsview.cpp +=================================================================== +--- mountmanager-0.2.6.orig/sources/gui/optionsview.cpp 2009-06-25 21:54:25.000000000 +0200 ++++ mountmanager-0.2.6/sources/gui/optionsview.cpp 2009-06-25 21:55:31.000000000 +0200 +@@ -62,7 +62,7 @@ + udfOptionsWidget->setWidgetResizable(true); + } + +- if (device->fileSystem() == "ntfs") { ++ if (device->fileSystem() == "ntfs" || device->fileSystem() == "ntfs-3g") { + ntfs3gOptionsWidget = new QScrollArea; + ntfs3gOptionsLayout = new QGridLayout; + ntfs3gOptionsLayout->setColumnStretch(2,1);