dag: Fix parameters passed to thread-check

This commit corrects an error introduced earlier: the call to
`TmThreadsCaptureHandleTimeout` is passing too many parameters.
pull/4899/head
Jeff Lucovsky 6 years ago committed by Victor Julien
parent a0392c6027
commit 9db8a917a2

@ -349,7 +349,7 @@ ReceiveErfDagLoop(ThreadVars *tv, void *data, void *slot)
if (top == NULL) {
if (errno == EAGAIN) {
if (dtv->dagstream & 0x1) {
TmThreadsCaptureHandleTimeout(tv, dtv->slot, NULL);
TmThreadsCaptureHandleTimeout(tv, NULL);
usleep(10 * 1000);
dtv->btm = dtv->top;
}

Loading…
Cancel
Save