summaryrefslogtreecommitdiffstats
path: root/libexec/bootpd/tools/bootptest/print-bootp.c
diff options
context:
space:
mode:
authoriedowse <iedowse@FreeBSD.org>2001-09-29 11:37:13 +0000
committeriedowse <iedowse@FreeBSD.org>2001-09-29 11:37:13 +0000
commit4ca6bf57c4e042ed40d2806a78f9728d98a4b04a (patch)
tree5400fa5975d5427f80bd2a3b7675089dba0f5bc3 /libexec/bootpd/tools/bootptest/print-bootp.c
parent85a8a3eb9ca2c3a9e08e96dc7fde3f7f2f23748b (diff)
downloadFreeBSD-src-4ca6bf57c4e042ed40d2806a78f9728d98a4b04a.zip
FreeBSD-src-4ca6bf57c4e042ed40d2806a78f9728d98a4b04a.tar.gz
Avoid a few compiler warnings (printf codes, missing includes etc).
PR: bin/30864 Obtained from: Dan Lukes <dan@obluda.cz> MFC after: 1 week
Diffstat (limited to 'libexec/bootpd/tools/bootptest/print-bootp.c')
-rw-r--r--libexec/bootpd/tools/bootptest/print-bootp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/bootpd/tools/bootptest/print-bootp.c b/libexec/bootpd/tools/bootptest/print-bootp.c
index 977a32d..9ea450e 100644
--- a/libexec/bootpd/tools/bootptest/print-bootp.c
+++ b/libexec/bootpd/tools/bootptest/print-bootp.c
@@ -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(",");
OpenPOWER on IntegriCloud