Changeset 1cf0ea1 in rtems
- Timestamp:
- Mar 5, 2004, 6:25:33 PM (17 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 6debefee
- Parents:
- 07e9194e
- Location:
- cpukit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r07e9194e r1cf0ea1 1 2004-03-05 Joel Sherrill <joel@OARcorp.com> 2 3 * libnetworking/lib/ftpfs.c: Switch bcopy to memcpy. 4 1 5 2004-03-05 Joel Sherrill <joel@OARcorp.com> 2 6 -
cpukit/libnetworking/lib/ftpfs.c
r07e9194e r1cf0ea1 637 637 hent = gethostbyname(hostname); 638 638 if (hent != NULL) { 639 bcopy(hent->h_addr,640 (char *)(&(fsp->farCtrlAddress.sin_addr)),639 memcpy((char *)(&(fsp->farCtrlAddress.sin_addr)), 640 hent->h_addr, 641 641 sizeof(fsp->farCtrlAddress.sin_addr)); 642 642 }
Note: See TracChangeset
for help on using the changeset viewer.