Mercurial > nand-ecoscentric
changeset 1063:e54a552c19f9
* src/net/bootp.c: Use correct DHCP message type for DHCPREQUEST.
| author | jlarmour |
|---|---|
| date | Mon, 23 Jun 2003 23:42:15 +0000 |
| parents | e8b69d9c90a6 |
| children | c220ab07f5ed |
| files | packages/redboot/current/ChangeLog packages/redboot/current/src/net/bootp.c |
| diffstat | 2 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/packages/redboot/current/ChangeLog +++ b/packages/redboot/current/ChangeLog @@ -1,3 +1,7 @@ +2003-06-24 Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com> + + * src/net/bootp.c: Use correct DHCP message type for DHCPREQUEST. + 2003-05-20 Mark Salter <msalter@redhat.com> * cdl/redboot.cdl (CYGBLD_REDBOOT_CMD_LINE_HISTORY): New option.
--- a/packages/redboot/current/src/net/bootp.c +++ b/packages/redboot/current/src/net/bootp.c @@ -70,7 +70,7 @@ static bootp_header_t *bp_info; #ifdef CYGSEM_REDBOOT_NETWORKING_USE_GATEWAY static const unsigned char dhcpCookie[] = {99,130,83,99}; static const unsigned char dhcpEndOption[] = {255}; -static const unsigned char dhcpRequestOption[] = {52,1,3}; +static const unsigned char dhcpRequestOption[] = {53,1,3}; #endif static void
