summaryrefslogtreecommitdiff
path: root/toolchain/uClibc
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2012-06-30 18:12:23 +0000
committerFelix Fietkau <nbd@openwrt.org>2012-06-30 18:12:23 +0000
commite98810dced1a6713d6bd0182c0c1b605446429de (patch)
tree3d9247a325a7bebaebe486ca9cc5f59ab2eaf71d /toolchain/uClibc
parent70259bceb47dbfb236293cfc928f210f86c4afae (diff)
downloadmtk-20170518-e98810dced1a6713d6bd0182c0c1b605446429de.zip
mtk-20170518-e98810dced1a6713d6bd0182c0c1b605446429de.tar.gz
mtk-20170518-e98810dced1a6713d6bd0182c0c1b605446429de.tar.bz2
toolchain/uClibc: fix getting the nameserver from _res state after res_init. fixes displaying the nameserver in busybox nslookup
SVN-Revision: 32555
Diffstat (limited to 'toolchain/uClibc')
-rw-r--r--toolchain/uClibc/patches-0.9.33.2/132-inet_fix_res_init.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/toolchain/uClibc/patches-0.9.33.2/132-inet_fix_res_init.patch b/toolchain/uClibc/patches-0.9.33.2/132-inet_fix_res_init.patch
new file mode 100644
index 0000000..c935821
--- /dev/null
+++ b/toolchain/uClibc/patches-0.9.33.2/132-inet_fix_res_init.patch
@@ -0,0 +1,15 @@
+--- a/libc/inet/resolv.c
++++ b/libc/inet/resolv.c
+@@ -3654,11 +3654,11 @@ res_init(void)
+ */
+ if (!_res.id)
+ _res.id = res_randomid();
+- __res_sync = res_sync_func;
+
+ __UCLIBC_MUTEX_UNLOCK(__resolv_lock);
+
+ __res_vinit(&_res, 1);
++ __res_sync = res_sync_func;
+
+ return 0;
+ }