summaryrefslogtreecommitdiff
path: root/common/nit.c
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>1999-10-07 06:47:50 +0000
committerTed Lemon <source@isc.org>1999-10-07 06:47:50 +0000
commit8ca113391af381af27f2066858a7db7e77d6a200 (patch)
treeb1ffad9a64eec940c297086f59d097133045279b /common/nit.c
parente703795db44e755a8c5f12980088e392f07fd1aa (diff)
downloadisc-dhcp-8ca113391af381af27f2066858a7db7e77d6a200.tar.gz
Fix a few more machine-specific signed vs. unsigned pointer bufs.
Diffstat (limited to 'common/nit.c')
-rw-r--r--common/nit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/nit.c b/common/nit.c
index 533cbd12..e9c2f8c7 100644
--- a/common/nit.c
+++ b/common/nit.c
@@ -23,7 +23,7 @@
#ifndef lint
static char copyright[] =
-"$Id: nit.c,v 1.24 1999/09/09 23:53:14 mellon Exp $ Copyright (c) 1996, 1998, 1999 The Internet Software Consortium. All rights reserved.\n";
+"$Id: nit.c,v 1.25 1999/10/07 06:47:50 mellon Exp $ Copyright (c) 1996, 1998, 1999 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */
#include "dhcpd.h"
@@ -240,7 +240,7 @@ ssize_t send_packet (interface, packet, raw, len, from, to, hto)
struct sockaddr_in *to;
struct hardware *hto;
{
- int bufp;
+ unsigned bufp;
unsigned char buf [1536 + sizeof (struct sockaddr)];
struct sockaddr *junk;
struct strbuf ctl, data;