summaryrefslogtreecommitdiffstats
path: root/usr.sbin/bootparamd/callbootd
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1998-06-12 14:39:00 +0000
committerpeter <peter@FreeBSD.org>1998-06-12 14:39:00 +0000
commit43ad42f95825177e6682697a85213ba28a700fc0 (patch)
tree880a8e01219c82ba8290d7594ec0a87eb343ef23 /usr.sbin/bootparamd/callbootd
parentfdde6212a237c4acaa251ba634d6e37ee6b16610 (diff)
downloadFreeBSD-src-43ad42f95825177e6682697a85213ba28a700fc0.zip
FreeBSD-src-43ad42f95825177e6682697a85213ba28a700fc0.tar.gz
#include <arpa/inet.h> for inet_* definitions.
Diffstat (limited to 'usr.sbin/bootparamd/callbootd')
-rw-r--r--usr.sbin/bootparamd/callbootd/callbootd.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.sbin/bootparamd/callbootd/callbootd.c b/usr.sbin/bootparamd/callbootd/callbootd.c
index 6108fc7..f92fb5f 100644
--- a/usr.sbin/bootparamd/callbootd/callbootd.c
+++ b/usr.sbin/bootparamd/callbootd/callbootd.c
@@ -9,13 +9,15 @@ use and modify. Please send modifications and/or suggestions + bug fixes to
#ifndef lint
static const char rcsid[] =
- "$Id$";
+ "$Id: callbootd.c,v 1.6 1997/09/04 11:50:37 charnier Exp $";
#endif /* not lint */
#include "bootparam_prot.h"
#include <rpc/rpc.h>
#include <sys/types.h>
#include <sys/socket.h>
+#include <netinet/in.h>
+#include <arpa/inet.h>
#include <err.h>
#include <netdb.h>
@@ -186,7 +188,7 @@ bp_getfile_res *res;
if (res) {
printf("server_name:\t%s\nserver_address:\t%s\npath:\t%s\n",
res->server_name,
- inet_ntoa(res->server_address.bp_address_u.ip_addr),
+ inet_ntoa(*(struct in_addr *)&res->server_address.bp_address_u.ip_addr),
res->server_path);
return(0);
} else {
OpenPOWER on IntegriCloud