From: Wayne Davison Date: Sat, 11 Jan 2003 02:05:56 +0000 (+0000) Subject: The inet_pton() man page says we need to pass in a pointer to a X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/aaf375d0a5bc139efb3998a9af4865aab980ed26?hp=aaf375d0a5bc139efb3998a9af4865aab980ed26 The inet_pton() man page says we need to pass in a pointer to a struct in_addr, which means passing &sin.sin_addr instead of &sin.sin_addr.s_addr. Also changed the AF_INET6 version to pass &sin6.sin6_addr. Hopefully this will fix UNICOS and not break anyone else. ---