From 6751c3da2783726df35b99eff076e4c9c36902bd Mon Sep 17 00:00:00 2001 From: Yves-Alexis Perez Date: Sat, 7 Jan 2012 15:56:26 +0100 Subject: [PATCH] Bug 7360: Fix two calls to snprintf() --- panel-plugin/net.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/panel-plugin/net.c b/panel-plugin/net.c index 261e466..e5afd5c 100644 --- a/panel-plugin/net.c +++ b/panel-plugin/net.c @@ -194,7 +194,7 @@ int get_interface_up(netdata* data) return FALSE; } - snprintf(ifr.ifr_name, IF_NAMESIZE, data->ifdata.if_name); + snprintf(ifr.ifr_name, IF_NAMESIZE, "%s", data->ifdata.if_name); if (ioctl(sockfd, SIOCGIFFLAGS, &ifr) != 0) { PRINT_DBG("Error in ioctl(sockfd): %s", strerror(errno)); @@ -231,7 +231,7 @@ char* get_ip_address(netdata* data) return NULL; } - snprintf(ifr.ifr_name, IF_NAMESIZE, data->ifdata.if_name); + snprintf(ifr.ifr_name, IF_NAMESIZE, "%s", data->ifdata.if_name); if (ioctl(sockfd, SIOCGIFADDR, &ifr) != 0) { if (errno != EADDRNOTAVAIL)