From 91e740074e1c288a341e4c7487c8efebbaa9cb66 Mon Sep 17 00:00:00 2001 From: Jean-Francois Dockes Date: Mon, 31 Jan 2011 09:31:35 +0100 Subject: [PATCH] mh_execm: removed incorrect subdocerrors handling leftover from previous change --- src/internfile/mh_execm.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/internfile/mh_execm.cpp b/src/internfile/mh_execm.cpp index 727d1398..c7bc4f57 100644 --- a/src/internfile/mh_execm.cpp +++ b/src/internfile/mh_execm.cpp @@ -45,7 +45,7 @@ bool MimeHandlerExecMultiple::startCmd() LOGDEB(("MimeHandlerExecMultiple::startCmd\n")); if (params.empty()) { // Hu ho - LOGERR(("MHExecMultiple::mkDoc: empty params\n")); + LOGERR(("MHExecMultiple::startCmd: empty params\n")); m_reason = "RECFILTERROR BADCONFIG"; return false; } @@ -199,15 +199,12 @@ bool MimeHandlerExecMultiple::next_document() } else if (!stringlowercmp("eofnow:", name)) { LOGDEB(("MHExecMultiple: got EOFNOW\n")); eofnow_received = true; - } else if (!stringlowercmp("subdocerror:", name)) { - LOGDEB(("MHExecMultiple: got SUBDOCERROR\n")); - subdocerror_received = true; } else if (!stringlowercmp("fileerror:", name)) { LOGDEB(("MHExecMultiple: got FILEERROR\n")); fileerror_received = true; } else if (!stringlowercmp("subdocerror:", name)) { LOGDEB(("MHExecMultiple: got SUBDOCERROR\n")); - return false; + subdocerror_received = true; } else if (!stringlowercmp("ipath:", name)) { ipath = data; LOGDEB(("MHExecMultiple: got ipath [%s]\n", data.c_str()));