--- lmtp2nntp_config.c 2002/05/28 12:43:14 1.74
+++ lmtp2nntp_config.c 2002/05/28 14:02:40 1.75
@@ -1106,7 +1106,6 @@
rethrow;
}
}
- //printf("DEBUG: *** 1 *** file as it was just read in ***\n%s***\n", cpBuf);
{
volatile msg_t *msg = NULL;
msg_rc_t rc;
@@ -1120,28 +1119,10 @@
logbook(ctx->l2, L2_LEVEL_ERROR, "Error splitting message: %s", msg_error(rc));
throw(0, 0, "msg_split");
}
- {//FIXME
- char *cp;
- cp = NULL;
- logbook(msg->l2, L2_LEVEL_DEBUG, "FIXME trace #20");
- while ((cp = argz_next(msg->azHeaders, msg->asHeaders, cp)) != NULL) {
- logbook(msg->l2, L2_LEVEL_DEBUG, "header=\"%s\"", cp);
- }
- logbook(msg->l2, L2_LEVEL_DEBUG, "FIXME trace #21");
- }
msg_headermatrixbuildup((msg_t *)msg);
ctx->msg = (msg_t *)msg;
headerrewrite(ctx);
msg_headermatrixteardwn((msg_t *)msg);
- {//FIXME
- char *cp;
- cp = NULL;
- logbook(msg->l2, L2_LEVEL_DEBUG, "FIXME trace #30");
- while ((cp = argz_next(msg->azHeaders, msg->asHeaders, cp)) != NULL) {
- logbook(msg->l2, L2_LEVEL_DEBUG, "header=\"%s\"", cp);
- }
- logbook(msg->l2, L2_LEVEL_DEBUG, "FIXME trace #31");
- }
argz_add(&((msg_t *)msg)->azNewsgroups, &((msg_t *)msg)->asNewsgroups, "invalid.tst"); //FIXME
if ((rc = msg_join((msg_t *)msg)) != MSG_OK) {
logbook(ctx->l2, L2_LEVEL_ERROR, "Error joining message: %s", msg_error(rc));
|