By default, chrootCall should never time out.

main
Teo Mrnjavac 11 years ago
parent 45ac91c784
commit c64e229142

@ -100,7 +100,7 @@ int chrootCall( const QStringList& args,
process.closeWriteChannel();
}
if ( !process.waitForFinished( timeoutSec ? ( timeoutSec * 1000 ) : 30000 ) )
if ( !process.waitForFinished( timeoutSec ? ( timeoutSec * 1000 ) : -1 ) )
{
cLog() << "Timed out. output so far:";
cLog() << process.readAllStandardOutput();

Loading…
Cancel
Save