SCEnter();
uint8_t updated = 0;
- uint16_t num_tags = 0;
+ uint16_t ntags = 0;
Host *host = NULL;
/* Lookup host in the hash. If it doesn't exist yet it's
DetectTagDataEntry *iter = NULL;
for (iter = tag; iter != NULL; iter = iter->next) {
- num_tags++;
+ ntags++;
if (iter->sid == tde->sid && iter->gid == tde->gid) {
iter->cnt_match++;
/* If so, update data, unless the maximum MATCH limit is
}
/* If there was no entry of this rule, append the new tde */
- if (updated == 0 && num_tags < DETECT_TAG_MAX_TAGS) {
+ if (updated == 0 && ntags < DETECT_TAG_MAX_TAGS) {
/* get a new tde as the one we have is on the stack */
DetectTagDataEntry *new_tde = DetectTagDataCopy(tde);
if (new_tde != NULL) {
new_tde->next = tag;
HostSetStorageById(host, host_tag_id, new_tde);
}
- } else if (num_tags == DETECT_TAG_MAX_TAGS) {
- SCLogDebug("Max tags for sessions reached (%"PRIu16")", num_tags);
+ } else if (ntags == DETECT_TAG_MAX_TAGS) {
+ SCLogDebug("Max tags for sessions reached (%"PRIu16")", ntags);
}
}