Browse Source

Fix for GitHub issue #358 and bump version to 1.1.13 (dev)

Adam Ierymenko 9 years ago
parent
commit
6320879fe1
2 changed files with 4 additions and 3 deletions
  1. 3 2
      node/NetworkConfig.hpp
  2. 1 1
      version.h

+ 3 - 2
node/NetworkConfig.hpp

@@ -365,9 +365,10 @@ public:
 	{
 		while (ptr < specialistCount) {
 			if ((specialists[ptr] & ZT_NETWORKCONFIG_SPECIALIST_TYPE_NETWORK_PREFERRED_RELAY) != 0) {
-				return Address(specialists[ptr]);
+				return Address(specialists[ptr++]);
+			} else {
+				++ptr;
 			}
-			++ptr;
 		}
 		return Address();
 	}

+ 1 - 1
version.h

@@ -32,6 +32,6 @@
 /**
  * Revision
  */
-#define ZEROTIER_ONE_VERSION_REVISION 12
+#define ZEROTIER_ONE_VERSION_REVISION 13
 
 #endif