Commit e3ee55b1 authored by Luca Boccassi's avatar Luca Boccassi

Problem: missing indentation for UDP branch

Solution: fix it
parent c8f3f8a5
......@@ -902,7 +902,7 @@ int zmq::socket_base_t::connect (const char *addr_)
}
#endif
if (protocol == "udp") {
if (protocol == "udp") {
if (options.type != ZMQ_RADIO) {
errno = ENOCOMPATPROTO;
LIBZMQ_DELETE(paddr);
......@@ -916,7 +916,7 @@ if (protocol == "udp") {
LIBZMQ_DELETE(paddr);
return -1;
}
}
}
// TBD - Should we check address for ZMQ_HAVE_NORM???
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment