From 4321a14d9d5675367291dc975748ca1b9c93526f Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Mon, 28 Mar 2022 15:18:51 +0200 Subject: [PATCH] OSCI: rpminspect.yaml: Eliminate badfuncs warning The code uses inet_aton() deliberately to detect whether a given string is an IPv4 address or not. Sadly, rpminspect only supports ignoring certain output files for the entire badfuncs check, so ignore those containing the inet_aton() calls. --- rpminspect.yaml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 rpminspect.yaml diff --git a/rpminspect.yaml b/rpminspect.yaml new file mode 100644 index 0000000..d52f012 --- /dev/null +++ b/rpminspect.yaml @@ -0,0 +1,5 @@ +--- +badfuncs: + ignore: + - /usr/sbin/conntrack + - /usr/sbin/conntrackd