From 2257505bcf725a8d7e70611196bb09dad4538827 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 12 Jan 2022 15:00:33 +0100 Subject: sys/linux: change netlink policies to the new $ convention --- tools/syz-check/check.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/syz-check/check.go b/tools/syz-check/check.go index 6f59a1fa6..91f5ead47 100644 --- a/tools/syz-check/check.go +++ b/tools/syz-check/check.go @@ -413,7 +413,7 @@ func checkNetlinkStruct(locs map[string]*ast.Struct, symbols map[string][]symbol return nil, nil } // In some cases we split a single policy into multiple ones (more precise description), - // so try to match our foo$bar with with kernel foo as well. + // so try to match our foo$bar with kernel foo as well. kernelName, ss := name, symbols[name] if delim := strings.LastIndexByte(name, '$'); len(ss) == 0 && delim != -1 { kernelName = name[:delim] -- cgit mrf-deployment