From 79ead9f363bd8dc80eb61c3b9e8ca310002b77f1 Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Tue, 17 Oct 2017 13:47:46 -0500 Subject: [PATCH] Fix a typo in inet_ntop.c (#151) --- inet_ntop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inet_ntop.c b/inet_ntop.c index 9420f6cb..ce3ce588 100644 --- a/inet_ntop.c +++ b/inet_ntop.c @@ -54,7 +54,7 @@ static const char *inet_ntop6(const unsigned char *src, char *dst, size_t size); * On Windows we store the error in the thread errno, not * in the winsock error code. This is to avoid loosing the * actual last winsock error. So use macro ERRNO to fetch the - * errno this funtion sets when returning NULL, not SOCKERRNO. + * errno this function sets when returning NULL, not SOCKERRNO. * author: * Paul Vixie, 1996. */