summaryrefslogtreecommitdiff
path: root/src/plugins
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@nokia.com>2011-02-04 11:28:57 +0100
committerChristian Kandeler <christian.kandeler@nokia.com>2011-02-04 11:29:54 +0100
commit9c48cd3bf2e4c8f037a87ea22de3227588220613 (patch)
tree6c58bba01aba7fc09c2067762e2e19b21331f8aa /src/plugins
parent4d4ae95bafa9a66d0d5bddee6c2e2eff0902d139 (diff)
downloadqt-creator-9c48cd3bf2e4c8f037a87ea22de3227588220613.tar.gz
SSH: Suppress annoying warning about unknown request type.
Seems to be an OpenSSH extension.
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/coreplugin/ssh/sshchannel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/coreplugin/ssh/sshchannel.cpp b/src/plugins/coreplugin/ssh/sshchannel.cpp
index b26f2cf6a2..3e8d5d50b3 100644
--- a/src/plugins/coreplugin/ssh/sshchannel.cpp
+++ b/src/plugins/coreplugin/ssh/sshchannel.cpp
@@ -212,7 +212,7 @@ void AbstractSshChannel::handleChannelRequest(const SshIncomingPacket &packet)
handleExitStatus(packet.extractChannelExitStatus());
else if (requestType == SshIncomingPacket::ExitSignalType)
handleExitSignal(packet.extractChannelExitSignal());
- else
+ else if (requestType != "eow@openssh.com") // Suppress warning for this one, as it's sent all the time.
qWarning("Ignoring unknown request type '%s'", requestType.data());
}