mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
all: Fix typos identified by typos pre-commit hook
This commit is contained in:
parent
260c868f26
commit
7a043e5e8f
57 changed files with 80 additions and 80 deletions
|
@ -130,9 +130,9 @@ bool File::UpdateConnectionFields(Connection* conn, bool is_orig)
|
|||
|
||||
if ( ! conns )
|
||||
{
|
||||
auto ect = empty_connection_table();
|
||||
conns = ect;
|
||||
val->Assign(conns_idx, std::move(ect));
|
||||
auto empty_conn_table = empty_connection_table();
|
||||
conns = empty_conn_table;
|
||||
val->Assign(conns_idx, std::move(empty_conn_table));
|
||||
}
|
||||
|
||||
auto idx = get_conn_id_val(conn);
|
||||
|
|
|
@ -39,7 +39,7 @@ event ocsp_request_certificate%(f: fa_file, hashAlgorithm: string, issuerNameHas
|
|||
##
|
||||
## f: The file.
|
||||
##
|
||||
## status: The status of the OCSP response (e.g. succesful, malformedRequest, tryLater).
|
||||
## status: The status of the OCSP response (e.g. successful, malformedRequest, tryLater).
|
||||
##
|
||||
## .. zeek:see:: ocsp_request ocsp_request_certificate
|
||||
## ocsp_response_bytes ocsp_response_certificate ocsp_extension
|
||||
|
@ -52,7 +52,7 @@ event ocsp_response_status%(f: fa_file, status: string%);
|
|||
##
|
||||
## f: The file.
|
||||
##
|
||||
## status: The status of the OCSP response (e.g. succesful, malformedRequest, tryLater).
|
||||
## status: The status of the OCSP response (e.g. successful, malformedRequest, tryLater).
|
||||
##
|
||||
## version: Version of the OCSP response (typically - for version 1).
|
||||
##
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue