aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/QXmppStun.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/QXmppStun.cpp b/src/QXmppStun.cpp
index 40a28bcd..eaab467c 100644
--- a/src/QXmppStun.cpp
+++ b/src/QXmppStun.cpp
@@ -1060,7 +1060,7 @@ void QXmppStunSocket::readyRead()
// process message from peer
Pair *pair = 0;
- if (message.type() == Binding | Request)
+ if (message.type() == (Binding | Request))
{
// add remote candidate
pair = addRemoteCandidate(socket, remoteHost, remotePort);
@@ -1093,7 +1093,7 @@ void QXmppStunSocket::readyRead()
writeStun(message, pair);
}
- } else if (message.type() == Binding | Response) {
+ } else if (message.type() == (Binding | Response)) {
// find the pair for this transaction
foreach (Pair *ptr, m_pairs)