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:
-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;
}
}