From aa27601f9e978d77b528ddf56e670c24f511d0d2 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 15 Nov 2019 10:57:49 +0100 Subject: pkg/host: rename some features Rename some features in preparation for subsequent changes which will align names across the code base. --- pkg/host/syscalls_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/host/syscalls_linux.go') diff --git a/pkg/host/syscalls_linux.go b/pkg/host/syscalls_linux.go index dff19fb01..5e67d05eb 100644 --- a/pkg/host/syscalls_linux.go +++ b/pkg/host/syscalls_linux.go @@ -201,7 +201,7 @@ func isSupportedSyzkall(sandbox string, c *prog.Syscall) (bool, string) { case "syz_open_pts": return true, "" case "syz_emit_ethernet", "syz_extract_tcp_res": - reason := checkNetworkInjection() + reason := checkNetInjection() return reason == "", reason case "syz_usb_connect", "syz_usb_disconnect", "syz_usb_control_io", "syz_usb_ep_write", "syz_usb_ep_read": reason := checkUSBInjection() -- cgit mrf-deployment