Skip to content
Snippets Groups Projects
Commit 74185ff2 authored by Sébastien Blin's avatar Sébastien Blin
Browse files

ip_utils: remove incorrect check

This brings regression and unit test are failing

Change-Id: I0bd7373bd75f502b2f08f55932a6b6c4210d31d2
parent 2a2edcbb
No related branches found
No related tags found
No related merge requests found
......@@ -291,11 +291,6 @@ ip_utils::getLocalAddr(pj_uint16_t family)
IpAddr
ip_utils::getInterfaceAddr(const std::string& interface, pj_uint16_t family)
{
if (AF_UNSPEC == family) {
JAMI_WARN("Unspecifcied interface family");
return {};
}
if (interface == DEFAULT_INTERFACE)
return getLocalAddr(family);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment