diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2018-12-09 14:08:33 +1100 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2018-12-09 14:08:35 +1100 |
commit | 2b63686ff0ba92c56f1c03c75daa9fa86ec56681 (patch) | |
tree | a8d0b362b619bf0dbd1a64244b0164fe978cb8af /Projects | |
parent | eec7bb2476649ad329164454afd874bd079d3f57 (diff) | |
download | lufa-2b63686ff0ba92c56f1c03c75daa9fa86ec56681.tar.gz lufa-2b63686ff0ba92c56f1c03c75daa9fa86ec56681.tar.bz2 lufa-2b63686ff0ba92c56f1c03c75daa9fa86ec56681.zip |
Fix invalid DHCP server socket creation in the Webserver project.
Diffstat (limited to 'Projects')
-rw-r--r-- | Projects/Webserver/Lib/DHCPServerApp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Projects/Webserver/Lib/DHCPServerApp.c b/Projects/Webserver/Lib/DHCPServerApp.c index 22bd6ac01..49bbde4d3 100644 --- a/Projects/Webserver/Lib/DHCPServerApp.c +++ b/Projects/Webserver/Lib/DHCPServerApp.c @@ -50,7 +50,7 @@ void DHCPServerApp_Init(void) uip_listen(HTONS(DHCP_SERVER_PORT)); /* Create a new UDP connection to the DHCP server port for the DHCP solicitation */ - struct uip_udp_conn* BroadcastConnection = uip_udp_new(&uip_broadcast_addr, HTONS(DHCP_CLIENT_PORT)); + BroadcastConnection = uip_udp_new(&uip_broadcast_addr, HTONS(DHCP_CLIENT_PORT)); /* If the connection was successfully created, bind it to the local DHCP client port */ if (BroadcastConnection != NULL) |