On Sunday 20 July 2008 02:04:08 Jorgen Cederlof wrote:
> + } else if (!strncmp(buf, "prr=", 3) &&
> + (ptr = strchr(buf, '=')) &&
> + (fcomma = strchr(ptr+1, ','))) {
strlen("prr=") == 4 but you use strncmp with 3?
z.