[package] make "name" parameter optional in dnsmasq "boot" config sections
[openwrt/svn-archive/archive.git] / package / dnsmasq / patches / 102-rtnetlink.patch
1 diff -ur dnsmasq-2.47.orig/src/netlink.c dnsmasq-2.47/src/netlink.c
2 --- dnsmasq-2.47.orig/src/netlink.c 2009-02-15 19:05:25.000000000 +0200
3 +++ dnsmasq-2.47/src/netlink.c 2008-02-15 19:05:25.000000000 +0200
4 @@ -21,6 +21,10 @@
5 #include <linux/types.h>
6 #include <linux/netlink.h>
7 #include <linux/rtnetlink.h>
8 +#ifndef IFA_RTA
9 +# include "linux/if_addr.h"
10 +# define IFA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifaddrmsg))))
11 +#endif
12
13 /* linux 2.6.19 buggers up the headers, patch it up here. */
14 #ifndef IFA_RTA