Commit 15b7e534 authored by Antonin Décimo's avatar Antonin Décimo Committed by Juliusz Chroboczek

Make broadcast_addr an unsigned char array.

parent 4153c4bd
......@@ -388,7 +388,7 @@ int
dhcpv4_receive()
{
int rc, buflen, doit;
const char broadcast_addr[4] = {255, 255, 255, 255};
const unsigned char broadcast_addr[4] = {255, 255, 255, 255};
struct sockaddr_in from, to;
int dontroute = 1;
int bufsiz = 1500;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment