diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-05-06 18:04:35 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-05-06 18:04:35 +0000 |
commit | bce16467708a050e1c88a010f7dfb370013e5ea6 (patch) | |
tree | 250bdd8bc2d735f826ee108b75554d2586bdf3d4 /resolv/res_send.c | |
parent | 8e45b1acc235d73fc6866849ec302e9c2077a84e (diff) | |
download | glibc-bce16467708a050e1c88a010f7dfb370013e5ea6.tar glibc-bce16467708a050e1c88a010f7dfb370013e5ea6.tar.gz glibc-bce16467708a050e1c88a010f7dfb370013e5ea6.tar.bz2 glibc-bce16467708a050e1c88a010f7dfb370013e5ea6.zip |
* include/arpa/nameser.h: Also optimize NS_PUT16 and NS_PUT32.
* resolv/res_mkquery.c: Use NS_PUT16 and NS_PUT32 instead of __putshort
and __putlong respectively. Correct buffer overflow check for
NS_NOTIFY_OP.
* resolv/res_send.c (send_vc): Use ns_put16 instead of putshort.
Diffstat (limited to 'resolv/res_send.c')
-rw-r--r-- | resolv/res_send.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resolv/res_send.c b/resolv/res_send.c index ebe4fbfc9b..887d048e19 100644 --- a/resolv/res_send.c +++ b/resolv/res_send.c @@ -674,7 +674,7 @@ send_vc(res_state statp, /* * Send length & message */ - putshort((u_short)buflen, (u_char*)&len); + ns_put16((u_short)buflen, (u_char*)&len); evConsIovec(&len, INT16SZ, &iov[0]); evConsIovec((void*)buf, buflen, &iov[1]); if (TEMP_FAILURE_RETRY (writev(statp->_vcsock, iov, 2)) |