diff options
Diffstat (limited to 'mdk-stage1/dhcp.c')
| -rw-r--r-- | mdk-stage1/dhcp.c | 10 | 
1 files changed, 6 insertions, 4 deletions
| diff --git a/mdk-stage1/dhcp.c b/mdk-stage1/dhcp.c index f5de6543e..678031e85 100644 --- a/mdk-stage1/dhcp.c +++ b/mdk-stage1/dhcp.c @@ -1,7 +1,7 @@  /* - * Guillaume Cottenceau (gc@mandrakesoft.com) + * Guillaume Cottenceau (gc)   * - * Copyright 2000 Mandrakesoft + * Copyright 2000 Mandriva   *   * This software may be freely redistributed under the terms of the GNU   * public license. @@ -45,6 +45,8 @@  #include "stage1.h"  #include "log.h" +#include "tools.h" +#include "utils.h"  #include "network.h"  #include "frontend.h"  #include "automatic.h" @@ -211,7 +213,7 @@ static void parse_reply(struct bootp_request * breq, struct interface_info * int  	unsigned char * chptr;  	unsigned char option, length; -	if (breq->bootfile && strlen(breq->bootfile) > 0) { +	if (strlen(breq->bootfile) > 0) {                  if (IS_NETAUTO)                          add_to_env("KICKSTART", breq->bootfile);                  else @@ -585,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 */ | 
