diff options
Diffstat (limited to 'toys/pending/tcpsvd.c')
-rw-r--r-- | toys/pending/tcpsvd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toys/pending/tcpsvd.c b/toys/pending/tcpsvd.c index 37aafebf..031d7238 100644 --- a/toys/pending/tcpsvd.c +++ b/toys/pending/tcpsvd.c @@ -79,8 +79,8 @@ static char *sock_to_address(struct sockaddr *sock, int flags) if (!(status = getnameinfo(sock, len, hbuf, sizeof(hbuf), sbuf, sizeof(sbuf), flags))) { - if (flags & NI_NUMERICSERV) return xmsprintf("%s:%s",hbuf, sbuf); - return xmsprintf("%s",hbuf); + if (flags & NI_NUMERICSERV) return xmprintf("%s:%s",hbuf, sbuf); + return xmprintf("%s",hbuf); } error_exit("getnameinfo: %s", gai_strerror(status)); } |