summaryrefslogtreecommitdiffstats
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
parentfdde6212a237c4acaa251ba634d6e37ee6b16610 (diff)
downloadFreeBSD-src-43ad42f95825177e6682697a85213ba28a700fc0.zip
FreeBSD-src-43ad42f95825177e6682697a85213ba28a700fc0.tar.gz
#include <arpa/inet.h> for inet_* definitions.
-rw-r--r--usr.sbin/bootparamd/bootparamd/main.c6
-rw-r--r--usr.sbin/bootparamd/callbootd/callbootd.c6
2 files changed, 8 insertions, 4 deletions
diff --git a/usr.sbin/bootparamd/bootparamd/main.c b/usr.sbin/bootparamd/bootparamd/main.c
index fb79060..7484bec 100644
--- a/usr.sbin/bootparamd/bootparamd/main.c
+++ b/usr.sbin/bootparamd/bootparamd/main.c
@@ -9,7 +9,7 @@ use and modify. Please send modifications and/or suggestions + bug fixes to
#ifndef lint
static const char rcsid[] =
- "$Id$";
+ "$Id: main.c,v 1.7 1997/09/04 11:49:28 charnier Exp $";
#endif /* not lint */
#include <ctype.h>
@@ -26,11 +26,13 @@ static const char rcsid[] =
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/types.h>
+#include <netinet/in.h>
+#include <arpa/inet.h>
#include "bootparam_prot.h"
int debug = 0;
int dolog = 0;
-unsigned long route_addr = -1, inet_addr();
+unsigned long route_addr = -1;
struct sockaddr_in my_addr;
char *bootpfile = "/etc/bootparams";
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