summaryrefslogtreecommitdiff
path: root/service
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@zerotier.com>2015-11-12 16:48:42 -0800
committerAdam Ierymenko <adam.ierymenko@zerotier.com>2015-11-12 16:48:42 -0800
commit54f68280bd65589fc858901f1c5c4ed8588862c3 (patch)
treeb9cea6e4a538f80f1db1217409ce9ff0e9b52193 /service
parentbacb53fe8fdfa1ecd429cdfb07de96ec0fb0589b (diff)
downloadinfinitytier-54f68280bd65589fc858901f1c5c4ed8588862c3.tar.gz
infinitytier-54f68280bd65589fc858901f1c5c4ed8588862c3.zip
Minor Windows build fixes. Builds on VS2012 again.
Diffstat (limited to 'service')
-rw-r--r--service/OneService.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/OneService.cpp b/service/OneService.cpp
index 87f4136c..a912c830 100644
--- a/service/OneService.cpp
+++ b/service/OneService.cpp
@@ -796,7 +796,7 @@ public:
while (ua) {
InetAddress ip(ua->Address.lpSockaddr);
ip.setPort(_port);
- _node->addLocalInterfaceAddress(reinterpret_cast<const struct sockaddr_storage *>(&ip),0,ZT_LOCAL_INTERFACE_ADDRESS_TRUST_NORMAL);
+ _node->addLocalInterfaceAddress(reinterpret_cast<const struct sockaddr_storage *>(&ip));
ua = ua->Next;
}
}