You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On ARM the conmux.c around gethostbyname() results in a compiler
warning/error:
conmux.c:269:27: error: cast increases required alignment of target type [-Werror=cast-align]
269 | saddr.sin_addr = *(struct in_addr *)hent->h_addr_list[0];
Instead of trying to fix the (deprecated) gethostbyname() call, switch
conmux to use getaddrinfo(), which is the proper way to resolve
addresses.
Signed-off-by: Dmitry Baryshkov <[email protected]>
0 commit comments