Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Hacker <dd0t@users.sourceforge.net>2018-06-15 01:19:52 +0300
committerStefan Hacker <dd0t@users.sourceforge.net>2018-06-15 01:19:52 +0300
commit5b034be575646d8b56b439c09c5ee0da6d1f6d49 (patch)
tree1c1a3197eed87221906b6809767335e506866046 /src/murmur/Messages.cpp
parent46cd35c847abbfd47681381dbb59b843c1471c6a (diff)
Accept incompatibility with other 1.3 pre-release snapshots
Those now only say permission denied without a proper reason.
Diffstat (limited to 'src/murmur/Messages.cpp')
-rw-r--r--src/murmur/Messages.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/murmur/Messages.cpp b/src/murmur/Messages.cpp
index fee573fed..967cff794 100644
--- a/src/murmur/Messages.cpp
+++ b/src/murmur/Messages.cpp
@@ -897,7 +897,7 @@ void Server::msgChannelState(ServerUser *uSource, MumbleProto::ChannelState &msg
return;
if (iChannelCountLimit != 0 && qhChannels.count() >= iChannelCountLimit) {
- PERM_DENIED_FALLBACK(ChannelCountLimit, 0x010301, QLatin1String("Channel count limit reached"));
+ PERM_DENIED_FALLBACK(ChannelCountLimit, 0x010300, QLatin1String("Channel count limit reached"));
return;
}