Ethernet Shield Brochure Typo

I found two typos on the code in the Ethernet brochure:

[url]http://www.tinyclr.com/downloads/Shield/Broch_EthernatShield.pdf[/url]

WIZnet_W5100.Enable(SPI.SPI_module.SPI1, (Cpu.Pin)FEZ_Pin.Digital.Di10,
(Cpu.Pin)FEZ_Pin.Digital.Di9),true);

there is extra ) after FEZ_Pin.Digital.Di9. It should be,

WIZnet_W5100.Enable(SPI.SPI_module.SPI1, (Cpu.Pin)FEZ_Pin.Digital.Di10,
(Cpu.Pin)FEZ_Pin.Digital.Di9, true);

and in the ProcessRequest() method,

int len = file.Length;

should be

 int len = buf.Length;

otherwise, the code work great! :wink:

Thank you Sam, It is fix.