Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
Merge pull request #43 from ybznek/v0-8-ssh-copy
Browse files Browse the repository at this point in the history
Fix strange characters in report after remote scan
  • Loading branch information
mpreisler committed Sep 2, 2015
2 parents a794af4 + 90c979f commit 8d9329f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ProcessHelpers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ void SyncProcess::run()

mRunning = false;

mStdOutContents = process.readAllStandardOutput();
mStdErrContents = process.readAllStandardError();
mStdOutContents = QString::fromLocal8Bit(process.readAllStandardOutput());
mStdErrContents = QString::fromLocal8Bit(process.readAllStandardError());

// TODO: We are duplicating data here!
mDiagnosticInfo += "stdout:\n===============================\n" + QString(mStdOutContents) + QString("\n");
Expand Down

0 comments on commit 8d9329f

Please sign in to comment.