mh_execm: removed incorrect subdocerrors handling leftover from previous change
This commit is contained in:
parent
19aa3cf607
commit
91e740074e
@ -45,7 +45,7 @@ bool MimeHandlerExecMultiple::startCmd()
|
|||||||
LOGDEB(("MimeHandlerExecMultiple::startCmd\n"));
|
LOGDEB(("MimeHandlerExecMultiple::startCmd\n"));
|
||||||
if (params.empty()) {
|
if (params.empty()) {
|
||||||
// Hu ho
|
// Hu ho
|
||||||
LOGERR(("MHExecMultiple::mkDoc: empty params\n"));
|
LOGERR(("MHExecMultiple::startCmd: empty params\n"));
|
||||||
m_reason = "RECFILTERROR BADCONFIG";
|
m_reason = "RECFILTERROR BADCONFIG";
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -199,15 +199,12 @@ bool MimeHandlerExecMultiple::next_document()
|
|||||||
} else if (!stringlowercmp("eofnow:", name)) {
|
} else if (!stringlowercmp("eofnow:", name)) {
|
||||||
LOGDEB(("MHExecMultiple: got EOFNOW\n"));
|
LOGDEB(("MHExecMultiple: got EOFNOW\n"));
|
||||||
eofnow_received = true;
|
eofnow_received = true;
|
||||||
} else if (!stringlowercmp("subdocerror:", name)) {
|
|
||||||
LOGDEB(("MHExecMultiple: got SUBDOCERROR\n"));
|
|
||||||
subdocerror_received = true;
|
|
||||||
} else if (!stringlowercmp("fileerror:", name)) {
|
} else if (!stringlowercmp("fileerror:", name)) {
|
||||||
LOGDEB(("MHExecMultiple: got FILEERROR\n"));
|
LOGDEB(("MHExecMultiple: got FILEERROR\n"));
|
||||||
fileerror_received = true;
|
fileerror_received = true;
|
||||||
} else if (!stringlowercmp("subdocerror:", name)) {
|
} else if (!stringlowercmp("subdocerror:", name)) {
|
||||||
LOGDEB(("MHExecMultiple: got SUBDOCERROR\n"));
|
LOGDEB(("MHExecMultiple: got SUBDOCERROR\n"));
|
||||||
return false;
|
subdocerror_received = true;
|
||||||
} else if (!stringlowercmp("ipath:", name)) {
|
} else if (!stringlowercmp("ipath:", name)) {
|
||||||
ipath = data;
|
ipath = data;
|
||||||
LOGDEB(("MHExecMultiple: got ipath [%s]\n", data.c_str()));
|
LOGDEB(("MHExecMultiple: got ipath [%s]\n", data.c_str()));
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user