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:
authordavidebeatrici <davidebeatrici@gmail.com>2017-07-06 22:23:25 +0300
committerdavidebeatrici <davidebeatrici@gmail.com>2017-07-06 22:23:25 +0300
commit90777a9b9bd863d69a782a93c74425e817b06bf1 (patch)
tree954f3dce8af9ee4d43aaeaa1fa5453630ec1c52a /src/ServerAddress.cpp
parent8275f77f4762e65b1ffbce43b4c213b496d9d29f (diff)
ServerAddress.cpp: Fix ServerAddress ports comparison typo
Diffstat (limited to 'src/ServerAddress.cpp')
-rw-r--r--src/ServerAddress.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ServerAddress.cpp b/src/ServerAddress.cpp
index 98a6d5365..0979109e9 100644
--- a/src/ServerAddress.cpp
+++ b/src/ServerAddress.cpp
@@ -30,7 +30,7 @@ bool operator<(const ServerAddress &lhs, const ServerAddress &rhs) {
if (lhs.host < rhs.host) {
return true;
} else if (lhs.host == rhs.host) {
- if (lhs.port < lhs.port) {
+ if (lhs.port < rhs.port) {
return true;
}
}