Skip to content

Commit

Permalink
FIXUP
Browse files Browse the repository at this point in the history
  • Loading branch information
victorjulien committed Jan 29, 2025
1 parent 4373f10 commit 50b8f55
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/detect-parse.c
Original file line number Diff line number Diff line change
Expand Up @@ -1324,7 +1324,11 @@ static int SigParseProto(Signature *s, const char *protostr)
char *xsaveptr = NULL;
p = strtok_r(proto, ":", &xsaveptr);
h = strtok_r(NULL, ":", &xsaveptr);
SCLogNotice("p: '%s' h: '%s'", p, h);
SCLogDebug("p: '%s' h: '%s'", p, h);
}
if (p == NULL) {
SCLogError("invalid protocol specification '%s'", proto);
return -1;
}

int r = DetectProtoParse(&s->proto, p);
Expand Down

0 comments on commit 50b8f55

Please sign in to comment.