From 9c48cd3bf2e4c8f037a87ea22de3227588220613 Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Fri, 4 Feb 2011 11:28:57 +0100 Subject: SSH: Suppress annoying warning about unknown request type. Seems to be an OpenSSH extension. --- src/plugins/coreplugin/ssh/sshchannel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plugins') 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()); } -- cgit v1.2.1