mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-19 08:26:14 +00:00
Buffer<> has no .empty() method
This commit is contained in:
parent
bc4bd29488
commit
70b1b4ecc7
@ -2386,7 +2386,7 @@ public:
|
||||
Dictionary<4096> nc;
|
||||
nc.load(nlcbuf.c_str());
|
||||
Buffer<1024> allowManaged;
|
||||
if (nc.get("allowManaged", allowManaged) && !allowManaged.empty()) {
|
||||
if (nc.get("allowManaged", allowManaged) && !allowManaged.size() == 0) {
|
||||
std::string addresses (allowManaged.begin(), allowManaged.size());
|
||||
if (allowManaged.size() <= 5) { // untidy parsing for backward compatibility
|
||||
if (allowManaged[0] == '1' || allowManaged[0] == 't' || allowManaged[0] == 'T') {
|
||||
|
Loading…
x
Reference in New Issue
Block a user