aboutsummaryrefslogtreecommitdiff
path: root/networking/ifplugd.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2009-04-26 01:43:36 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2009-04-26 01:43:36 +0000
commit80e57eb7d525803bb776e8294483141756b2b2ef (patch)
tree2f6edc0f54906953fb6a95c5a4161e2115627431 /networking/ifplugd.c
parentf4e4563fe7030d2ed574fef837478128b40516c9 (diff)
downloadbusybox-80e57eb7d525803bb776e8294483141756b2b2ef.tar.gz
ifplugd: tiny shrink
Diffstat (limited to 'networking/ifplugd.c')
-rw-r--r--networking/ifplugd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/ifplugd.c b/networking/ifplugd.c
index 3d7f2a98a..3315e9a4d 100644
--- a/networking/ifplugd.c
+++ b/networking/ifplugd.c
@@ -222,7 +222,7 @@ static int network_ioctl(int request, void* data)
static void set_ifreq_to_ifname(struct ifreq *ifreq)
{
memset(ifreq, 0, sizeof(struct ifreq));
- strncpy(ifreq->ifr_name, G.iface, IFNAMSIZ);
+ strncpy_IFNAMSIZ(ifreq->ifr_name, G.iface);
}
static const char *strstatus(int status)
@@ -389,7 +389,7 @@ static smallint detect_link_wlan(void)
uint8_t mac[ETH_ALEN];
memset(&iwrequest, 0, sizeof(struct iwreq));
- strncpy(iwrequest.ifr_ifrn.ifrn_name, G.iface, IFNAMSIZ);
+ strncpy_IFNAMSIZ(iwrequest.ifr_ifrn.ifrn_name, G.iface);
if (network_ioctl(SIOCGIWAP, &iwrequest) < 0) {
bb_perror_msg("SIOCGIWAP failed");