Problem: missing indentation for UDP branch

Solution: fix it
This commit is contained in:
Luca Boccassi
2017-10-07 18:05:21 +01:00
parent c8f3f8a5da
commit e3ee55b191

View File

@@ -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???