diff options
Diffstat (limited to 'otherlibs/unix/gethost.c')
-rw-r--r-- | otherlibs/unix/gethost.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/unix/gethost.c b/otherlibs/unix/gethost.c index bae25f711..6e27928e4 100644 --- a/otherlibs/unix/gethost.c +++ b/otherlibs/unix/gethost.c @@ -34,7 +34,7 @@ extern int socket_domain_table[]; static value alloc_one_addr(char *a) { struct in_addr addr; - bcopy(a, &addr, entry_h_length); + memmove (&addr, a, entry_h_length); return alloc_inet_addr(addr.s_addr); } |