Index: ossp-pkg/lmtp2nntp/nntp.c RCS File: /v/ossp/cvs/ossp-pkg/lmtp2nntp/Attic/nntp.c,v rcsdiff -q -kk '-r1.10' '-r1.11' -u '/v/ossp/cvs/ossp-pkg/lmtp2nntp/Attic/nntp.c,v' 2>/dev/null --- nntp.c 2001/08/23 07:50:42 1.10 +++ nntp.c 2001/08/23 07:52:25 1.11 @@ -430,6 +430,7 @@ else if (rc == NNTP_ERR_OVERFLOW) str = "NNTP: buffer overflow"; else if (rc == NNTP_ERR_POST ) str = "NNTP: cannot post message"; else if (rc == NNTP_ERR_INIT ) str = "NNTP: initialization failed"; + else if (rc == NNTP_ERR_UNKNOWN ) str = "NNTP: unknown error"; return str; } Index: ossp-pkg/lmtp2nntp/nntp.h RCS File: /v/ossp/cvs/ossp-pkg/lmtp2nntp/Attic/nntp.h,v rcsdiff -q -kk '-r1.6' '-r1.7' -u '/v/ossp/cvs/ossp-pkg/lmtp2nntp/Attic/nntp.h,v' 2>/dev/null --- nntp.h 2001/08/16 15:00:50 1.6 +++ nntp.h 2001/08/23 07:52:25 1.7 @@ -54,7 +54,8 @@ NNTP_ERR_ARG, NNTP_ERR_OVERFLOW, NNTP_ERR_POST, - NNTP_ERR_INIT + NNTP_ERR_INIT, + NNTP_ERR_UNKNOWN } nntp_rc_t; nntp_t *nntp_create (int, int, nntp_io_t *);