diff options
author | Adam Ierymenko <adam.ierymenko@zerotier.com> | 2013-08-26 17:22:20 -0400 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@zerotier.com> | 2013-08-26 17:22:20 -0400 |
commit | 487eb17ec075dd2bdc91f78b41577b070d90f8f5 (patch) | |
tree | 1dccfa3836a48cf917934fe5dd01210d9d60d236 /node/Dictionary.hpp | |
parent | 9f16707b0b8ec62de67394bf4884408eb65f2a7a (diff) | |
download | infinitytier-487eb17ec075dd2bdc91f78b41577b070d90f8f5.tar.gz infinitytier-487eb17ec075dd2bdc91f78b41577b070d90f8f5.zip |
ZeroTierOne for Windows binary project, builds and runs and mostly works but still some issues with tap.
Diffstat (limited to 'node/Dictionary.hpp')
-rw-r--r-- | node/Dictionary.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/node/Dictionary.hpp b/node/Dictionary.hpp index f706168f..178810ff 100644 --- a/node/Dictionary.hpp +++ b/node/Dictionary.hpp @@ -114,9 +114,9 @@ public: std::string s; for(const_iterator kv(begin());kv!=end();++kv) { - _appendEsc(kv->first.data(),kv->first.length(),s); + _appendEsc(kv->first.data(),(unsigned int)kv->first.length(),s); s.push_back('='); - _appendEsc(kv->second.data(),kv->second.length(),s); + _appendEsc(kv->second.data(),(unsigned int)kv->second.length(),s); s.append(ZT_EOL_S); } |