aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/inet
diff options
context:
space:
mode:
authorXin LI <delphij@FreeBSD.org>2007-06-14 07:13:28 +0000
committerXin LI <delphij@FreeBSD.org>2007-06-14 07:13:28 +0000
commit0bb263df82e129f5f8c82da6deb55dfe10daa677 (patch)
tree5499a5a1c9adc888dfad16a42918098269cca4c5 /lib/libc/inet
parenta7429823788ea244b1bfb57a0a6ffc9da8885c84 (diff)
downloadsrc-0bb263df82e129f5f8c82da6deb55dfe10daa677.tar.gz
src-0bb263df82e129f5f8c82da6deb55dfe10daa677.zip
Require users to provide a length information for inet_ntoa_r,
this is common on other platforms. Reported by: pointyhat via kris
Notes
Notes: svn path=/head/; revision=170715
Diffstat (limited to 'lib/libc/inet')
-rw-r--r--lib/libc/inet/inet_ntoa.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libc/inet/inet_ntoa.c b/lib/libc/inet/inet_ntoa.c
index b75a983a523a..f5d69fac583c 100644
--- a/lib/libc/inet/inet_ntoa.c
+++ b/lib/libc/inet/inet_ntoa.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1983, 1993
* The Regents of the University of California. All rights reserved.
*
@@ -60,9 +60,10 @@ inet_ntoa(struct in_addr in) {
}
char *
-inet_ntoa_r(struct in_addr in, char *buf)
+inet_ntoa_r(struct in_addr in, char *buf, socklen_t size)
{
- (void) inet_ntop(AF_INET, &in, buf, sizeof("255.255.255.255"));
+
+ (void) inet_ntop(AF_INET, &in, buf, size);
return (buf);
}