]> git.ipfire.org Git - thirdparty/collectd.git/commit
src/netlink.c: remove REG_NOERROR
authorFabrice Fontaine <fontaine.fabrice@gmail.com>
Sun, 6 Sep 2020 12:17:23 +0000 (14:17 +0200)
committerFlorian Forster <octo@google.com>
Tue, 15 Sep 2020 20:37:18 +0000 (22:37 +0200)
commitd3d4e63f327a2bd5003711f5405168c31b6780fb
treee88050f1bfb9a83281cf237f56112fc60b9bd95a
parent3f935d017e81b7eaf84c9df421490230845dc5c0
src/netlink.c: remove REG_NOERROR

REG_NOERROR is used since version 5.12.0 and
https://github.com/collectd/collectd/commit/f7fd32e5209e188db7985a42054252fc4cbfe7c1

However, REG_NOERROR is not defined by musl, even GNU regex do not
mention REG_NOERROR, so just remove it to avoid the following build
failure:

src/netlink.c: In function 'check_ignorelist':
src/netlink.c:243:51: error: 'REG_NOERROR' undeclared (first use in this function); did you mean 'REG_NOTBOL'?
       if (regexec(i->rdevice, dev, 0, NULL, 0) != REG_NOERROR)
                                                   ^~~~~~~~~~~
                                                   REG_NOTBOL

Fixes:
 - http://autobuild.buildroot.org/results/cd4d75888b5259b028132dd224be34f69bcbb702

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
src/netlink.c