diff options
author | Denis Vlasenko | 2006-11-27 23:44:57 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-11-27 23:44:57 +0000 |
commit | 229b3d207216b23a107e4e1ee5584412f6b9318d (patch) | |
tree | d21a19b020f0ff35f7d0fa24f9812d68057ff06a /networking/udhcp | |
parent | e2d3ded3549edd58fe3b39f2254c65f0808bcac2 (diff) | |
download | busybox-229b3d207216b23a107e4e1ee5584412f6b9318d.zip busybox-229b3d207216b23a107e4e1ee5584412f6b9318d.tar.gz |
do not overflow ifr_name. maybe it was safe in some places,
but not everywhere. err to the safe side.
Diffstat (limited to 'networking/udhcp')
-rw-r--r-- | networking/udhcp/socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/socket.c b/networking/udhcp/socket.c index b27dca3..92bf4cc 100644 --- a/networking/udhcp/socket.c +++ b/networking/udhcp/socket.c @@ -51,7 +51,7 @@ int read_interface(char *interface, int *ifindex, uint32_t *addr, uint8_t *arp) } ifr.ifr_addr.sa_family = AF_INET; - strcpy(ifr.ifr_name, interface); + strncpy(ifr.ifr_name, interface, sizeof(ifr.ifr_name)); if (addr) { if (ioctl(fd, SIOCGIFADDR, &ifr) == 0) { bb_perror_msg("SIOCGIFADDR failed, is the interface up and configured?"); |