From a2f8d81fb6449d27aae74da6c80d7c139f6733f4 Mon Sep 17 00:00:00 2001 From: Jon Siwek Date: Mon, 13 Aug 2018 10:20:58 -0500 Subject: [PATCH] Fix validate-certs.bro comments --- scripts/policy/protocols/ssl/validate-certs.bro | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/policy/protocols/ssl/validate-certs.bro b/scripts/policy/protocols/ssl/validate-certs.bro index 451388da24..3f0d18a1c5 100644 --- a/scripts/policy/protocols/ssl/validate-certs.bro +++ b/scripts/policy/protocols/ssl/validate-certs.bro @@ -50,11 +50,11 @@ export { ## and is thus disabled by default. global ssl_store_valid_chain: bool = F &redef; - ## Event from a worker to the manager that it has encountered a new - ## valid intermediate. + ## Event from a manager to workers when encountering a new, valid + ## intermediate. global intermediate_add: event(key: string, value: vector of opaque of x509); - ## Event from the manager to the workers that a new intermediate chain + ## Event from workers to the manager when a new intermediate chain ## is to be added. global new_intermediate: event(key: string, value: vector of opaque of x509); }