Index: ossp-pkg/lmtp2nntp/nntp.c RCS File: /v/ossp/cvs/ossp-pkg/lmtp2nntp/Attic/nntp.c,v rcsdiff -q -kk '-r1.12' '-r1.13' -u '/v/ossp/cvs/ossp-pkg/lmtp2nntp/Attic/nntp.c,v' 2>/dev/null --- nntp.c 2001/08/23 08:10:12 1.12 +++ nntp.c 2001/08/23 08:36:16 1.13 @@ -135,7 +135,7 @@ * "Duplicate". Typical welcome string is "200 host InterNetNews NNRP * server INN 2.3.2 ready (posting * ok)." */ - if (str_parse(line, "m/^200.*\\sINN\\s/")) { + if (strncmp(line, "200", 3) == 0 && strstr(line, " INN ") != NULL) { nntp->kludgeinn441dup = TRUE; /*fprintf(stderr, "DEBUG: INN kludge activated!\n"); */ }