Index: ps/trunk/binaries/data/mods/public/gui/credits/texts/programming.json =================================================================== --- ps/trunk/binaries/data/mods/public/gui/credits/texts/programming.json +++ ps/trunk/binaries/data/mods/public/gui/credits/texts/programming.json @@ -144,6 +144,7 @@ { "nick": "jurgemaister" }, { "nick": "kabzerek", "name": "Grzegorz Kabza" }, { "nick": "Kai", "name": "Kai Chen" }, + { "nick": "kalev", "name": "Kalev Lember" }, { "name": "Kareem Ergawy" }, { "nick": "karmux", "name": "Karmo Rosental" }, { "nick": "kevmo", "name": "Kevin Caffrey" }, Index: ps/trunk/source/network/tests/test_StunClient.h =================================================================== --- ps/trunk/source/network/tests/test_StunClient.h +++ ps/trunk/source/network/tests/test_StunClient.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2021 Wildfire Games. +/* Copyright (C) 2022 Wildfire Games. * This file is part of 0 A.D. * * 0 A.D. is free software: you can redistribute it and/or modify @@ -42,7 +42,7 @@ CStr ip; TS_ASSERT(StunClient::FindLocalIP(ip)); // Quick validation that this looks like a valid IP address. - if (ip.size() < 8 || ip.size() > 15) + if (ip.size() < 7 || ip.size() > 15) { TS_FAIL("StunClient::FindLocalIP did not return a valid IPV4 address: wrong size"); return;