Avoid a few compiler warnings (printf codes, missing includes etc).

PR:		bin/30864
Obtained from:	Dan Lukes <dan@obluda.cz>
MFC after:	1 week
This commit is contained in:
iedowse 2001-09-29 11:37:13 +00:00
parent 85a8a3eb9c
commit 4ca6bf57c4
3 changed files with 8 additions and 4 deletions

View File

@ -34,9 +34,11 @@
#define P(args) ()
#endif
#ifdef DEBUG
static void dump_generic P((FILE *, struct shared_bindata *));
static void dump_host P((FILE *, struct host *));
static void list_ipaddresses P((FILE *, struct in_addr_list *));
#endif
#undef P
@ -262,7 +264,7 @@ dump_host(fp, hp)
/* NetBSD: domainname (see above) */
/* NetBSD: dumpfile (see above) */
if (hp->flags.time_offset) {
fprintf(fp, "\\\n\t:to=%ld:", hp->time_offset);
fprintf(fp, "\\\n\t:to=%ld:", (long)hp->time_offset);
}
if (hp->flags.time_server) {
fprintf(fp, "\\\n\t:ts=");

View File

@ -19,6 +19,7 @@
#include <ctype.h>
#include <paths.h>
#include <string.h>
#include <syslog.h>
#include "getether.h"
@ -117,13 +118,14 @@ getether(ifname, eap)
#include <net/if_dl.h>
#include <net/if_types.h>
int
getether(ifname, eap)
char *ifname; /* interface name from ifconfig structure */
char *eap; /* Ether address (output) */
{
int fd, rc = -1;
register int n;
struct ifreq ibuf[16], ifr;
struct ifreq ibuf[16];
struct ifconf ifc;
register struct ifreq *ifrp, *ifend;

View File

@ -120,7 +120,7 @@ bootp_print(bp, length, sport, dport)
printf(" hops:%d", bp->bp_hops);
if (bp->bp_xid)
printf(" xid:%d", ntohl(bp->bp_xid));
printf(" xid:%ld", (long)ntohl(bp->bp_xid));
if (bp->bp_secs)
printf(" secs:%d", ntohs(bp->bp_secs));
@ -336,7 +336,7 @@ rfc1048_print(bp, length)
case 'l': /* Long words */
while (len >= 4) {
bcopy((char *) bp, (char *) &ul, 4);
printf("%d", ntohl(ul));
printf("%ld", (long)ntohl(ul));
bp += 4;
len -= 4;
if (len) printf(",");