From: Wayne Davison Date: Sat, 6 Aug 2011 18:21:40 +0000 (-0700) Subject: Fix misplaced parens on getnameinfo() call. X-Git-Tag: v3.1.0pre1~93 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fb0d4403f0692ab409df942ff8e13f638ce01ad7;p=thirdparty%2Frsync.git Fix misplaced parens on getnameinfo() call. --- diff --git a/socket.c b/socket.c index 0f596e0d..84f9b0c2 100644 --- a/socket.c +++ b/socket.c @@ -303,7 +303,7 @@ int open_socket_out(char *host, int port, const char *bind_addr, } if (DEBUG_GTE(CONNECT, 2)) { char buf[2048]; - if ((error = getnameinfo(res->ai_addr, res->ai_addrlen, buf, sizeof buf, NULL, 0, NI_NUMERICHOST) != 0)) + if ((error = getnameinfo(res->ai_addr, res->ai_addrlen, buf, sizeof buf, NULL, 0, NI_NUMERICHOST)) != 0) snprintf(buf, sizeof buf, "*getnameinfo failure: %s*", gai_strerror(error)); rprintf(FINFO, "Connected to %s (%s)\n", h, buf); } @@ -315,7 +315,7 @@ int open_socket_out(char *host, int port, const char *bind_addr, for (res = res0, j = 0; res; res = res->ai_next, j++) { if (errnos[j] == 0) continue; - if ((error = getnameinfo(res->ai_addr, res->ai_addrlen, buf, sizeof buf, NULL, 0, NI_NUMERICHOST) != 0)) + if ((error = getnameinfo(res->ai_addr, res->ai_addrlen, buf, sizeof buf, NULL, 0, NI_NUMERICHOST)) != 0) snprintf(buf, sizeof buf, "*getnameinfo failure: %s*", gai_strerror(error)); rsyserr(FERROR, errnos[j], "failed to connect to %s (%s)", h, buf); }