From: Ana Rey Date: Thu, 18 Sep 2014 11:06:42 +0000 (+0200) Subject: extensions: libxt_devgroup: Fix the path of the group mappings file X-Git-Tag: v1.6.0~82 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=93ad9ea1b86bdaacffd8e33654abcea3d4e148b2;p=thirdparty%2Fiptables.git extensions: libxt_devgroup: Fix the path of the group mappings file Use "/etc/iproute2/group" as the default path to the mapping file instead of "/etc/iproute2/group_map". Signed-off-by: Ana Rey Signed-off-by: Pablo Neira Ayuso --- diff --git a/extensions/libxt_devgroup.c b/extensions/libxt_devgroup.c index 4a69c822..fb1fcb51 100644 --- a/extensions/libxt_devgroup.c +++ b/extensions/libxt_devgroup.c @@ -31,12 +31,12 @@ static const struct xt_option_entry devgroup_opts[] = { XTOPT_TABLEEND, }; -/* array of devgroups from /etc/iproute2/group_map */ +/* array of devgroups from /etc/iproute2/group */ static struct xtables_lmap *devgroups; static void devgroup_init(struct xt_entry_match *match) { - const char file[] = "/etc/iproute2/group_map"; + const char file[] = "/etc/iproute2/group"; devgroups = xtables_lmap_init(file); if (devgroups == NULL && errno != ENOENT) fprintf(stderr, "Warning: %s: %s\n", file, strerror(errno));