Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
9c48cd3b
Commit
9c48cd3b
authored
Feb 04, 2011
by
Christian Kandeler
Browse files
SSH: Suppress annoying warning about unknown request type.
Seems to be an OpenSSH extension.
parent
4d4ae95b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/coreplugin/ssh/sshchannel.cpp
View file @
9c48cd3b
...
...
@@ -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
());
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment