]> git.ipfire.org Git - thirdparty/collectd.git/commit
src/netlink.c: remove REG_NOERROR 3569/head
authorFabrice Fontaine <fontaine.fabrice@gmail.com>
Sun, 6 Sep 2020 12:17:23 +0000 (14:17 +0200)
committerFabrice Fontaine <fontaine.fabrice@gmail.com>
Sun, 6 Sep 2020 12:24:10 +0000 (14:24 +0200)
commit5e600ae2ad370ddbb759e84ce55a7dfaa9a0bdd7
treec5d0d009c5902ededba81be6474bd3063e6c10b6
parent4e04816e25fb996203c979162d88c37fe1c55b49
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