By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1708
Collapse All | Expand All

(-)a/tdecore/tdehw/tdestoragedevice.cpp (-2 / +4 lines)
Lines 626-632 TQString TDEStorageDevice::mountDevice(TQString mediaName, TDEStorageMountOption Link Here
626
626
627
	if( (mountOptions["filesystem"] == "jfs")) {
627
	if( (mountOptions["filesystem"] == "jfs")) {
628
		if (mountOptions["utf8"] == "true") {
628
		if (mountOptions["utf8"] == "true") {
629
			optionString.append(",iocharset=utf8");
629
			// udisks/udisks2 for now does not support option iocharset= for jfs
630
			// optionString.append(",iocharset=utf8");
630
		}
631
		}
631
	}
632
	}
632
633
Lines 640-646 TQString TDEStorageDevice::mountDevice(TQString mediaName, TDEStorageMountOption Link Here
640
	  || (mountOptions["filesystem"] == "ext4")
641
	  || (mountOptions["filesystem"] == "ext4")
641
	) {
642
	) {
642
		if (mountOptions.contains("journaling")) {
643
		if (mountOptions.contains("journaling")) {
643
			optionString.append(TQString(",data=%1").arg(mountOptions["journaling"]));
644
			// udisks/udisks2 for now does not support option data= for ext3/ext4
645
			// optionString.append(TQString(",data=%1").arg(mountOptions["journaling"]));
644
		}
646
		}
645
	}
647
	}
646
648

Return to bug 1708