summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRincewindsHat <12514511+RincewindsHat@users.noreply.github.com>2023-03-12 18:31:45 (GMT)
committerRincewindsHat <12514511+RincewindsHat@users.noreply.github.com>2023-04-17 22:20:28 (GMT)
commitab62b2ce5da5adbbfcbb63922b06695a7b94e997 (patch)
treea572242a401c205a732a678645a06dd08cdfab5f
parent907b933a87ae21ad776c53a2dd7f04beb220b6bf (diff)
downloadmonitoring-plugins-ab62b2ce5da5adbbfcbb63922b06695a7b94e997.tar.gz
Fixes for -Wuninitialized
-rw-r--r--plugins-root/check_icmp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins-root/check_icmp.c b/plugins-root/check_icmp.c
index edfd694..f96207b 100644
--- a/plugins-root/check_icmp.c
+++ b/plugins-root/check_icmp.c
@@ -1432,6 +1432,7 @@ get_ip_address(const char *ifname)
1432{ 1432{
1433 // TODO: Rewrite this so the function return an error and we exit somewhere else 1433 // TODO: Rewrite this so the function return an error and we exit somewhere else
1434 struct sockaddr_in ip; 1434 struct sockaddr_in ip;
1435 ip.sin_addr.s_addr = 0; // Fake inititialization to make compiler happy
1435#if defined(SIOCGIFADDR) 1436#if defined(SIOCGIFADDR)
1436 struct ifreq ifr; 1437 struct ifreq ifr;
1437 1438