diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-06-30 18:12:23 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-06-30 18:12:23 +0000 |
commit | 86e3bacd5a5e4274808090ae5c8750843a65b56a (patch) | |
tree | c74b28ba79a51ac9ff1bed82ad4c0ebcfbfc0eee | |
parent | b5d071eb9b38e3ea1f0eaf753e5c1fdcbd7a9f61 (diff) |
toolchain/uClibc: fix getting the nameserver from _res state after res_init. fixes displaying the nameserver in busybox nslookup
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32555 3c298f89-4303-0410-b956-a3cf2f4a3e73
-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 000000000..c935821b2 --- /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; + } |