Fix a reporting message that was meant to be compile-conditional.

This commit is contained in:
Herbert Wolverson 2024-03-14 10:42:22 -05:00
parent fbb3960b50
commit 8ec361b095

View File

@ -271,7 +271,9 @@ static __always_inline void process_tcp(
struct flow_data_t *data = bpf_map_lookup_elem(&flowbee, &key);
if (data == NULL) {
// If it isn't a flow we're tracking, bail out now
#ifdef VERBOSE
bpf_debug("Bailing");
#endif
return;
}