From f5302202e669987ba81ace09087056d2b9e224cf Mon Sep 17 00:00:00 2001 From: Zuzana Miklankova Date: Tue, 22 Mar 2022 14:16:57 +0100 Subject: [PATCH] ignore udf_example.so in badfuncs check Resolves: #2047868 udf_example.so contains following deprecated functions: gethostbyaddr gethostbyname inet_addr inet_ntoa The udf_example.so can be ignored from badfuncs check, because it is an exemplary file, showing users how to write own loadable functions. Even though code from this .so can be used in mysql server, it needs to be manually loaded by the user. Deprecated functions have been reported upstream [1]. [1] https://bugs.mysql.com/bug.php?id=106797 --- 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..201eb49 --- /dev/null +++ b/rpminspect.yaml @@ -0,0 +1,5 @@ +badfuncs: + ignore: + # udf_example.so can be ignored, as it is an example of how to write loadable functions + # Loadable functions were formerly know as UDF (User Defined Functions). + - /usr/lib64/mysql/plugin/udf_example.so