diff options
author | Florian Weimer <fweimer@redhat.com> | 2016-09-21 16:30:27 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2016-09-21 16:30:27 +0200 |
commit | 6815a33d53164e7f1a3b87cec905c17c7a14a007 (patch) | |
tree | 36746b90972604ea29e28a698e8bd1dbc6dedea4 /resolv/res_init.c | |
parent | cbb47fa1c6476af73f393a81cd62fc926e1b8f6e (diff) | |
download | glibc-6815a33d53164e7f1a3b87cec905c17c7a14a007.tar glibc-6815a33d53164e7f1a3b87cec905c17c7a14a007.tar.gz glibc-6815a33d53164e7f1a3b87cec905c17c7a14a007.tar.bz2 glibc-6815a33d53164e7f1a3b87cec905c17c7a14a007.zip |
resolv: Remove unsupported hook functions from the API [BZ #20016]
Diffstat (limited to 'resolv/res_init.c')
-rw-r--r-- | resolv/res_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resolv/res_init.c b/resolv/res_init.c index bfae537da4..0a01fd56db 100644 --- a/resolv/res_init.c +++ b/resolv/res_init.c @@ -144,8 +144,8 @@ __res_vinit(res_state statp, int preinit) { statp->pfcode = 0; statp->_vcsock = -1; statp->_flags = 0; - statp->qhook = NULL; - statp->rhook = NULL; + statp->__glibc_unused_qhook = NULL; + statp->__glibc_unused_rhook = NULL; statp->_u._ext.nscount = 0; for (n = 0; n < MAXNS; n++) statp->_u._ext.nsaddrs[n] = NULL; |