Problem: build still broken on kFreeBSD

Solution: fix refactor mistake introduced by:

    091df743a81f3899bd70166060c2082ea0cbd57c

    Fixes https://github.com/zeromq/libzmq/issues/4113
This commit is contained in:
Luca Boccassi 2021-01-08 20:41:51 +00:00
parent 2bf998f7e0
commit 0742d432e7

View File

@ -91,7 +91,7 @@ static std::string get_peer_address (zmq::fd_t s_)
if (cred.cr_ngroups > 0) if (cred.cr_ngroups > 0)
buf << cred.cr_groups[0]; buf << cred.cr_groups[0];
buf << ":"; buf << ":";
_peer_address += buf.str (); peer_address += buf.str ();
} }
} }
#endif #endif