mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 18:18:19 +00:00
fix a bug for parsing OCSP Get request
This commit is contained in:
parent
f0c642cd25
commit
00a0313967
1 changed files with 1 additions and 1 deletions
|
@ -236,7 +236,7 @@ function remove_first_slash(s: string): string
|
|||
{
|
||||
local s_len = |s|;
|
||||
if (s[0] == "/")
|
||||
return s[1:s_len];
|
||||
return remove_first_slash(s[1:s_len]);
|
||||
else
|
||||
return s;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue