Fix compiler warning when using HTP rev 68.

remotes/origin/master-1.0.x
Victor Julien 17 years ago
parent 79b15bd1cc
commit 6fe5509617

@ -99,7 +99,7 @@ int DetectHttpCookieMatch (ThreadVars *t, DetectEngineThreadCtx *det_ctx,
goto end;
}
if (BinSearch(bstr_ptr(h->value), bstr_size(h->value), co->data,
if (BinSearch((const uint8_t *)bstr_ptr(h->value), bstr_size(h->value), co->data,
co->data_len) != NULL)
{
SCLogDebug("match has been found in received request and given http_"

Loading…
Cancel
Save