binutils: update to 2.43.1
[openadk.git] / package / iptraf / patches / patch-src_fltmgr_c
blob6d0648422bcddae00b30b36a6a8441163bed0363
1 $Id: update-patches 24 2008-08-31 14:56:13Z wbx $
2 --- iptraf-3.0.0.orig/src/fltmgr.c      2005-09-13 09:27:51.000000000 +0200
3 +++ iptraf-3.0.0/src/fltmgr.c   2008-10-09 17:35:25.000000000 +0200
4 @@ -112,7 +112,7 @@ unsigned long int nametoaddr(char *ascna
5  
6          he = gethostbyname(ascname);
7          if (he != NULL)
8 -            bcopy((he->h_addr_list)[0], &result, he->h_length);
9 +            memcpy(&result, (he->h_addr_list)[0], he->h_length);
10          else {
11              snprintf(imsg, 45, "Unable to resolve %s", ascname);
12              write_error(imsg, daemonized);