File kiso-0.8.3-mount_option.patch of Package kiso
Description: Fix test mount options.
Author: Kyrill Detinov <lazy.kent.syse@gmail.com>
Index: src/main.cpp
===================================================================
--- src/main.cpp.orig 2005-08-26 15:48:02.000000000 +0400
+++ src/main.cpp 2010-09-02 19:38:46.000000000 +0400
@@ -71,7 +71,7 @@ int main(int argc, char *argv[])
KUniqueApplication Kiso;
KShellProcess *testmount = new KShellProcess();
- (*testmount)<< "sudo" << "/bin/mount" << "-o" << "loop*" << "-t" << "iso9660" << "Test.iso" << QDir::homeDirPath() + "/.kisotmp/Mount";
+ (*testmount)<< "sudo" << "/bin/mount" << "-o" << "loop" << "-t" << "iso9660" << "Test.iso" << QDir::homeDirPath() + "/.kisotmp/Mount";
testmount->start(KShellProcess::Block, KShellProcess::Stderr);
if ( getuid() == 0 ){
QString Status="No";