net: tests: Remove unused variables from dhcpv4 unit test

Fixes this:
error: ‘zero_addr’ defined but not used [-Werror=unused-const-variable=]
...

Change-Id: I5b0baf597e62f3206e15638a63e129503b76b048
Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
This commit is contained in:
Tomasz Bursztyka 2016-12-15 14:34:16 +01:00
commit ca4ac62611

View file

@ -148,8 +148,6 @@ static const struct net_eth_addr dst_addr = {
{ 0x10, 0x00, 0x00, 0x00, 0x00, 0x02 } };
static const struct in_addr server_addr = { { { 192, 0, 2, 1 } } };
static const struct in_addr client_addr = { { { 255, 255, 255, 255 } } };
static const struct in_addr broascast_addr = { { { 255, 255, 255, 255 } } };
static const struct in_addr zero_addr = { { { 0, 0, 0, 0 } } };
#define SERVER_PORT 67
#define CLIENT_PORT 68