From e9a030a7951295f2c18da0d10d6257a4a034a017 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 30 Aug 2013 01:13:38 +0200 Subject: fix invalid usage of memset() spot by gcc-4.8 introduced by Guillaume Cottenceau on Jan 8 2001 ("add dhcp") --- mdk-stage1/NEWS | 2 ++ mdk-stage1/dhcp.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/mdk-stage1/NEWS b/mdk-stage1/NEWS index da824352a..8b421ebb4 100644 --- a/mdk-stage1/NEWS +++ b/mdk-stage1/NEWS @@ -1,3 +1,5 @@ +- fix compiling with gcc-4.8 + 1.78 - probe virtual drivers too (mga#9546) (install from Xen hd not supported yet) diff --git a/mdk-stage1/dhcp.c b/mdk-stage1/dhcp.c index a4cc07446..77f8f356b 100644 --- a/mdk-stage1/dhcp.c +++ b/mdk-stage1/dhcp.c @@ -587,7 +587,7 @@ enum return_type perform_dhcp(struct interface_info * intf) log_message("DHCP: telling server to use name = %s", dhcp_hostname); } - memset(&client_addr.sin_addr, 0, sizeof(&client_addr.sin_addr)); + memset(&client_addr.sin_addr, 0, sizeof(client_addr.sin_addr)); client_addr.sin_family = AF_INET; client_addr.sin_port = htons(BOOTP_CLIENT_PORT); /* bootp client */ -- cgit v1.2.1