diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-06-30 18:12:23 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-06-30 18:12:23 +0000 |
commit | e98810dced1a6713d6bd0182c0c1b605446429de (patch) | |
tree | 3d9247a325a7bebaebe486ca9cc5f59ab2eaf71d /toolchain/uClibc/patches-0.9.33.2 | |
parent | 70259bceb47dbfb236293cfc928f210f86c4afae (diff) | |
download | upstream-e98810dced1a6713d6bd0182c0c1b605446429de.tar.gz upstream-e98810dced1a6713d6bd0182c0c1b605446429de.tar.bz2 upstream-e98810dced1a6713d6bd0182c0c1b605446429de.zip |
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/patches-0.9.33.2')
-rw-r--r-- | toolchain/uClibc/patches-0.9.33.2/132-inet_fix_res_init.patch | 15 |
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 0000000000..c935821b22 --- /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; + } |