From a1b1496fed9f908724b5a3c4ee419f7eef2b3a26 Mon Sep 17 00:00:00 2001 From: CN_SZTL Date: Sun, 8 Mar 2020 20:33:27 +0800 Subject: [PATCH] dnsmasq: fix typo --- .../services/dnsmasq/patches/996-dnsmasq-filter-aaaa.patch | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package/network/services/dnsmasq/patches/996-dnsmasq-filter-aaaa.patch b/package/network/services/dnsmasq/patches/996-dnsmasq-filter-aaaa.patch index 6f50742a95..2b28936ac1 100644 --- a/package/network/services/dnsmasq/patches/996-dnsmasq-filter-aaaa.patch +++ b/package/network/services/dnsmasq/patches/996-dnsmasq-filter-aaaa.patch @@ -22,8 +22,7 @@ index 1896a64..e10d6c4 100644 +#define OPT_LAST 63 #define OPTION_BITS (sizeof(unsigned int)*8) - #define OPTION_SIZE ( -(OPT_LAST/OPTION_BITS)+((OPT_LAST%OPTION_BITS)!=0) ) + #define OPTION_SIZE ( (OPT_LAST/OPTION_BITS)+((OPT_LAST%OPTION_BITS)!=0) ) diff --git a/src/option.c b/src/option.c index d8c57d6..1cc65bf 100644 --- a/src/option.c