From: Charles McGarvey Date: Sat, 15 May 2010 07:19:11 +0000 (-0600) Subject: bugfix: address name resolving to hostname X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=commitdiff_plain;h=2a97ae825077e5b75aee35b1c1ada221a4ae7b26 bugfix: address name resolving to hostname --- diff --git a/src/Moof/Socket.hh b/src/Moof/Socket.hh index dd43274..2411cc2 100644 --- a/src/Moof/Socket.hh +++ b/src/Moof/Socket.hh @@ -411,7 +411,7 @@ private: node, sizeof(node), serv, sizeof(serv), NI_NUMERICHOST | - (mType == SOCK_DGRAM) ? NI_DGRAM : 0); + ((mType == SOCK_DGRAM) ? NI_DGRAM : 0)); if (result == 0) { service.assign(serv);