Remove ssm argument when ssm not available

Signed-off-by: Marcel Jordense <marcel.jordense@adlinktech.com>
This commit is contained in:
Marcel Jordense 2020-06-05 15:23:17 +02:00 committed by eboasson
parent 9c31f48bea
commit efefb5009f

View file

@ -4578,10 +4578,10 @@ static void create_proxy_builtin_endpoints(
{
#ifdef DDSI_INCLUDE_SSM
const int ssm = addrset_contains_ssm (gv, proxypp->as_meta);
#else
const int ssm = 0;
#endif
new_proxy_reader (gv, ppguid, &guid1, proxypp->as_meta, &plist_rd, timestamp, 0, ssm);
#else
new_proxy_reader (gv, ppguid, &guid1, proxypp->as_meta, &plist_rd, timestamp, 0);
#endif
}
}
}