Changeset 1088

Show
Ignore:
Timestamp:
10/04/08 23:59:46 (3 months ago)
Author:
mwhitworth
Message:

Replace call to strcpy to strncpy.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Whitix/branches/keobject/devices/net/ne2k-pci.c

    r957 r1088  
    9494        /* Fill in the network device structure. */ 
    9595        netDev->ops=&ne2kOps; 
    96         strcpy(netDev->name, "Ethernet"); 
     96        strncpy(netDev->name, "Ethernet", sizeof("Ethernet")); 
    9797        ethDev=EthDeviceAlloc(netDev); 
    9898