diff --git a/libc/net/lib_gethostbyname.c b/libc/net/lib_gethostbyname.c index f5d15942aa..3c2a276ac9 100644 --- a/libc/net/lib_gethostbyname.c +++ b/libc/net/lib_gethostbyname.c @@ -81,7 +81,7 @@ static char g_hostbuffer[CONFIG_NETDB_BUFSIZE]; * * Input Parameters: * name - The name of the host to find. - * + * * Returned Value: * Upon successful completion, this function will return a pointer to a * hostent structure if the requested entry was found, and a null pointer diff --git a/libc/net/lib_gethostbynamer.c b/libc/net/lib_gethostbynamer.c index 3e8a5aeef3..cf464785ac 100644 --- a/libc/net/lib_gethostbynamer.c +++ b/libc/net/lib_gethostbynamer.c @@ -140,7 +140,7 @@ static int lib_numeric_address(FAR const char *name, FAR struct hostent *host, { return -ERANGE; } - + ret = inet_pton(AF_INET6, name, ptr); if (ret < 0) { @@ -228,7 +228,7 @@ static int lib_numeric_address(FAR const char *name, FAR struct hostent *host, * host data. * buflen - The size of the caller-provided buffer * h_errnop - There h_errno value returned in the event of a failure. - * + * * Returned Value: * Zero (OK) is returned on success, -1 (ERROR) is returned on a failure * with the returned h_errno value provided the reason for the failure. diff --git a/libc/net/lib_parsehostfile.c b/libc/net/lib_parsehostfile.c index 9ee743f6ee..4f0d694cca 100644 --- a/libc/net/lib_parsehostfile.c +++ b/libc/net/lib_parsehostfile.c @@ -319,7 +319,7 @@ ssize_t lib_parse_hostfile(FAR FILE *stream, FAR struct hostent *host, { return -ERANGE; } - + ret = inet_pton(AF_INET6, addrstring, ptr); if (ret < 0) {