]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/arphrd-to-name.awk
analyze security: fix recursive call of syscall_names_in_filter()
[thirdparty/systemd.git] / src / basic / arphrd-to-name.awk
1 BEGIN{
2 print "static const char* const arphrd_names[] = { "
3 }
4 !/CISCO/ {
5 printf " [ARPHRD_%s] = \"%s\",\n", $1, $1
6 }
7 END{
8 print "};"
9 }