[PATCH v2 04/11] sio: make code compatible with C

Vladimir Davydov vdavydov.dev at gmail.com
Wed Dec 5 11:57:23 MSK 2018


On Wed, Dec 05, 2018 at 12:28:51AM +0300, Vladislav Shpilevoy wrote:
> ---
>  src/sio.cc | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/src/sio.cc b/src/sio.cc
> index a13e7d9de..d0ae75dbc 100644
> --- a/src/sio.cc
> +++ b/src/sio.cc
> @@ -355,7 +355,7 @@ sio_strfaddr(struct sockaddr *addr, socklen_t addrlen)
>  	static __thread char name[NI_MAXHOST + _POSIX_PATH_MAX + 2];
>  	switch(addr->sa_family) {
>  		case AF_UNIX:
> -			if (addrlen >= sizeof(sockaddr_un)) {
> +			if (addrlen >= sizeof(struct sockaddr_un)) {
>  				snprintf(name, sizeof(name), "unix/:%s",
>  					((struct sockaddr_un *)addr)->sun_path);
>  			} else {

This doesn't deserve a separate patch. Squash it into patch 5 please.
No need to resend the patch.



More information about the Tarantool-patches mailing list