From e744c36c3f4b81c1a0d30200491af9e93839ea7e Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 7 Jun 2017 07:36:59 +0200 Subject: network: Use inet_ntoa_r() Update #2833. --- cpukit/libnetworking/nfs/bootp_subr.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cpukit/libnetworking/nfs') diff --git a/cpukit/libnetworking/nfs/bootp_subr.c b/cpukit/libnetworking/nfs/bootp_subr.c index 22d453faf2..484a6b5d72 100644 --- a/cpukit/libnetworking/nfs/bootp_subr.c +++ b/cpukit/libnetworking/nfs/bootp_subr.c @@ -1184,8 +1184,9 @@ bootpc_init(bool update_files, bool forever) } for (i = 0; i < rtems_bsdnet_nameserver_count; i++) { + char addrbuf[INET_ADDRSTRLEN]; strcpy(buf, "nameserver "); - strcat(buf, inet_ntoa(rtems_bsdnet_nameserver[i])); + strcat(buf, inet_ntoa_r(rtems_bsdnet_nameserver[i], addrbuf)); strcat(buf, "\n"); if (rtems_rootfs_file_append ("/etc/resolv.conf", MKFILE_MODE, 1, bufl)) break; -- cgit v1.2.3