summaryrefslogtreecommitdiff
path: root/includes/dhcp.h
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>1996-08-28 01:29:41 +0000
committerTed Lemon <source@isc.org>1996-08-28 01:29:41 +0000
commit9f35cc5dd44523b8c4eeb91f57f0d9adc331ada9 (patch)
tree7ad4666ed4d95b952d3043a91a61acdb48268d55 /includes/dhcp.h
parentd58a12592d3c76a2d9d0191cc2b1929527a9c57c (diff)
downloadisc-dhcp-9f35cc5dd44523b8c4eeb91f57f0d9adc331ada9.tar.gz
Make chaddr an unsigned char
Diffstat (limited to 'includes/dhcp.h')
-rw-r--r--includes/dhcp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/dhcp.h b/includes/dhcp.h
index d21aeaa1..a4c04821 100644
--- a/includes/dhcp.h
+++ b/includes/dhcp.h
@@ -65,7 +65,7 @@ struct dhcp_packet {
struct in_addr yiaddr; /* Client IP address */
struct in_addr siaddr; /* IP address of next server to talk to */
struct in_addr giaddr; /* DHCP relay agent IP address */
- char chaddr [16]; /* Client hardware address */
+ unsigned char chaddr [16]; /* Client hardware address */
char sname [DHCP_SNAME_LEN]; /* Server name */
char file [DHCP_FILE_LEN]; /* Boot filename */
unsigned char options [DHCP_OPTION_LEN];