Re: [Dnsmasq-discuss] [PATCH] Fix --server=/#/...... which was lost in 2.86

2022-07-23 Thread Geert Stappers via Dnsmasq-discuss
On Sat, Jul 23, 2022 at 02:02:31PM +, 谢致邦 (XIE Zhibang) via Dnsmasq-discuss wrote: > A victim of the domain-search rewrite. > --server=/#/.. means to use the server for default. The new > implementation orders the default server first, but because of the > rewrote domain-search, it needs

[Dnsmasq-discuss] [PATCH] Fix --server=/#/...... which was lost in 2.86

2022-07-23 Thread XIE Zhibang
A victim of the domain-search rewrite. --server=/#/.. means to use the server for default. The new implementation orders the default server first, but because of the rewrote domain-search, it needs strict-order to ensure the default. Signed-off-by: 谢致邦 (XIE Zhibang) --- src/dnsmasq.h |

Re: [Dnsmasq-discuss] [PATCH] Fix --server=/#/...... which was lost in 2.86

2022-07-23 Thread Geert Stappers via Dnsmasq-discuss
On Sat, Jul 23, 2022 at 10:54:04AM +, 谢致邦 (XIE Zhibang) via Dnsmasq-discuss wrote: > Signed-off-by: 谢致邦 (XIE Zhibang) > --- > src/dnsmasq.h | 34 ++ > src/domain-match.c | 15 +++ > src/network.c | 2 +- > 3 files changed, 30

[Dnsmasq-discuss] [PATCH] Fix --server=/#/...... which was lost in 2.86

2022-07-23 Thread XIE Zhibang
Signed-off-by: 谢致邦 (XIE Zhibang) --- src/dnsmasq.h | 34 ++ src/domain-match.c | 15 +++ src/network.c | 2 +- 3 files changed, 30 insertions(+), 21 deletions(-) diff --git a/src/dnsmasq.h b/src/dnsmasq.h index a8937ce..7512756 100644 ---