Kevin Dwyer wrote:
> - while (*scratch != '\n') {
> + while (*scratch != '\n' && idx < sizeof Description) {I strongly suspect that should be sizeof(Description)-1 because you're going to NULL-terminate... (didn't go back and look at the code to check closely) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

