Match consistent style

This commit is contained in:
Dennis Klein 2019-03-01 15:50:13 +01:00 committed by Dennis Klein
parent 1752e116e3
commit 2eb09df1f7

View File

@ -189,7 +189,9 @@ auto Socket::BindDataEndpoint() -> void
auto Socket::Connect(const string& address) -> bool auto Socket::Connect(const string& address) -> bool
try { try {
fRemoteAddr = Context::VerifyAddress(address); fRemoteAddr = Context::VerifyAddress(address);
fNeedOfiMemoryRegistration = (fRemoteAddr.Protocol == "verbs"); if (fRemoteAddr.Protocol == "verbs") {
fNeedOfiMemoryRegistration = true;
}
InitOfi(fRemoteAddr); InitOfi(fRemoteAddr);