aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/ssh
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@qt.io>2019-03-07 13:26:26 +0100
committerRobert Loehning <robert.loehning@qt.io>2019-03-07 16:46:54 +0000
commitb7375aabfb3d0b418553953f03c2e713de8e6e0b (patch)
tree2b4c142e5348c1c51af75506b9dd3dc0de4f5869 /src/libs/ssh
parentc9e13a18a3ecd534326614fadc0d8158997245a9 (diff)
SSH: Fix error message
A binary cannot crash. When executing the binary, a process is created which can crash. Change-Id: I0dc3d41c84b55fefda7e98353390b49bb51a288f Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/libs/ssh')
-rw-r--r--src/libs/ssh/sshremoteprocess.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/ssh/sshremoteprocess.cpp b/src/libs/ssh/sshremoteprocess.cpp
index aa46214afbb..4bd09b37e1f 100644
--- a/src/libs/ssh/sshremoteprocess.cpp
+++ b/src/libs/ssh/sshremoteprocess.cpp
@@ -71,7 +71,7 @@ SshRemoteProcess::SshRemoteProcess(const QByteArray &command, const QStringList
[this] {
QString error;
if (exitStatus() == QProcess::CrashExit)
- error = tr("The ssh binary crashed: %1").arg(errorString());
+ error = tr("The ssh process crashed: %1").arg(errorString());
else if (exitCode() == 255)
error = tr("Remote process crashed.");
emit done(error);