summaryrefslogtreecommitdiff
path: root/server/FirewallControllerTest.cpp
diff options
context:
space:
mode:
authorMaciej Żenczykowski <maze@google.com>2020-02-11 15:40:19 -0800
committerMaciej Żenczykowski <maze@google.com>2020-02-11 17:05:34 -0800
commit10a5892fa2be06665ff477c996dc1823129dd19f (patch)
treea35c7987b36fa8514f790b42acaa571cd4d9ce4d /server/FirewallControllerTest.cpp
parent69cd822147e99259616757edc06159ea23891938 (diff)
FirewallController - make mUseBpfOwnerMatch a bool
Test: builds, atest Signed-off-by: Maciej Żenczykowski <maze@google.com> Change-Id: I422a74e7a6f44259bb5f0c7a88222328e432c35b
Diffstat (limited to 'server/FirewallControllerTest.cpp')
-rw-r--r--server/FirewallControllerTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/FirewallControllerTest.cpp b/server/FirewallControllerTest.cpp
index bd933b47..1b53fb85 100644
--- a/server/FirewallControllerTest.cpp
+++ b/server/FirewallControllerTest.cpp
@@ -42,7 +42,7 @@ protected:
// This unit test currently doesn't cover the eBPF owner match case so
// we have to manually turn eBPF support off.
// TODO: find a way to unit test the eBPF code path.
- mFw.mUseBpfOwnerMatch = android::bpf::BpfLevel::NONE;
+ mFw.mUseBpfOwnerMatch = false;
}
FirewallController mFw;