diff options
author | Wayne Davison <wayned@samba.org> | 2011-08-06 11:21:40 -0700 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2011-08-06 11:21:40 -0700 |
commit | fb0d4403f0692ab409df942ff8e13f638ce01ad7 (patch) | |
tree | 27e0a3bbee01aa3eed77007b09b9999f3f5df95f /socket.c | |
parent | 3fd0357f9f9667154f81fa3bb78df5b5063c1684 (diff) | |
download | rsync-fb0d4403f0692ab409df942ff8e13f638ce01ad7.tar.gz |
Fix misplaced parens on getnameinfo() call.
Diffstat (limited to 'socket.c')
-rw-r--r-- | socket.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); } |