extb_combi: tighten up recursion depth
This commit is contained in:
parent
9145dc0956
commit
2749c37c43
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ static int eb_combi(const char *data, struct Client *client_p,
|
|||
int allowed_nodes = 6;
|
||||
size_t datalen;
|
||||
|
||||
if (recursion_depth >= 5) {
|
||||
if (recursion_depth >= 2) {
|
||||
DEBUG("combo invalid: recursion depth too high");
|
||||
return EXTBAN_INVALID;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue