Sample Program Wrong in Ethernet UDP Read Example

All,

The sample program over at Ethernet - Arduino Reference is great. Works properly... Except for the not setting the serial data rate and doing a Serial.begin().

The following lines need to be added to setup()

const unsigned int BAUD_RATE = 9600;
Serial.begin(BAUD_RATE)

How can this be fixed?