mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 08:08:19 +00:00
small bug fix
This commit is contained in:
parent
725d116852
commit
cea1b62a9a
1 changed files with 1 additions and 1 deletions
|
@ -377,7 +377,7 @@ function update_http_info(ocsp: OCSP_SSL_SPLIT::Info_OCSP, http: HTTP::Info)
|
|||
if ( http?$uri )
|
||||
{
|
||||
local uri_str = http$uri;
|
||||
if ( http$uri == "http://" + http$host )
|
||||
if ( http?$host && http$uri == "http://" + http$host )
|
||||
uri_str = "/"; #deal with software bug: make the full url empty
|
||||
if ( ocsp?$ocsp_uri )
|
||||
ocsp$ocsp_uri += uri_str;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue