diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-08-20 06:37:56 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-08-20 06:37:56 +0000 |
commit | 9af652f60865624b4f44605c0c8bd4c23a18a2a7 (patch) | |
tree | 74905537f4aacd0ad0f819845808639df06d8612 /sunrpc/clnt_simp.c | |
parent | 091b895531aabba1adc36ac6b68dd91ba52a0945 (diff) | |
download | glibc-9af652f60865624b4f44605c0c8bd4c23a18a2a7.tar glibc-9af652f60865624b4f44605c0c8bd4c23a18a2a7.tar.gz glibc-9af652f60865624b4f44605c0c8bd4c23a18a2a7.tar.bz2 glibc-9af652f60865624b4f44605c0c8bd4c23a18a2a7.zip |
Update.
2001-08-19 Ulrich Drepper <drepper@redhat.com>
* sunrpc/svcauth_des.c (_svcauth_des): Avoid using bcopy.
* sunrpc/xdr_rec.c: Likewise.
* sunrpc/xdr_mem.c: Likewise.
* sunrpc/svc_authux.c (_svcauth_unix): Likewise.
* sunrpc/rpc_cmsg.c: Likewise.
* sunrpc/getrpcport.c (getrpcport): Likewise.
* sunrpc/clnt_simp.c (callrpc): Likewise.
* sunrpc/clnt_gen.c (clnt_create): Likewise.
* string/envz.c: Likewise.
* po/ko.po: Update from translation team.
* argp/argp-help.c: Handle wide oriented stderr stream.
* conform/conformtest.pl: <inttypes.h> test requires <stddef.h>.
Diffstat (limited to 'sunrpc/clnt_simp.c')
-rw-r--r-- | sunrpc/clnt_simp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sunrpc/clnt_simp.c b/sunrpc/clnt_simp.c index 735f2edb9a..5c11b479b2 100644 --- a/sunrpc/clnt_simp.c +++ b/sunrpc/clnt_simp.c @@ -122,7 +122,7 @@ callrpc (const char *host, u_long prognum, u_long versnum, u_long procnum, timeout.tv_usec = 0; timeout.tv_sec = 5; - bcopy (hp->h_addr, (char *) &server_addr.sin_addr, hp->h_length); + memcpy ((char *) &server_addr.sin_addr, hp->h_addr, hp->h_length); server_addr.sin_family = AF_INET; server_addr.sin_port = 0; if ((crp->client = clntudp_create (&server_addr, (u_long) prognum, |