even though both have same value
Signed-off-by: Hal Rosenstock <[email protected]> --- diff --git a/examples/rstream.c b/examples/rstream.c index d93e9aa..ba5e449 100644 --- a/examples/rstream.c +++ b/examples/rstream.c @@ -421,7 +421,7 @@ static int client_connect(void) rai_hints.ai_flags |= RAI_PASSIVE; ret = rdma_getaddrinfo(src_addr, port, &rai_hints, &rai_src); } else { - ai_hints.ai_flags |= RAI_PASSIVE; + ai_hints.ai_flags |= AI_PASSIVE; ret = getaddrinfo(src_addr, port, &ai_hints, &ai_src); } if (ret) { -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
