summaryrefslogtreecommitdiffstats
path: root/plugins/check_dig.c
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@flameeyes.eu>2012-08-18 02:14:01 (GMT)
committerHolger Weiss <holger@zedat.fu-berlin.de>2013-05-12 12:15:13 (GMT)
commit332c6ef2c7480a23f3c2fa59f5cd2c88db8d9919 (patch)
tree85ff0cecb0f8d1eae50c1a50d0c2789c32b28a93 /plugins/check_dig.c
parent08f5670a790da20c33ef3c0950db527e507f0479 (diff)
downloadmonitoring-plugins-332c6ef2c7480a23f3c2fa59f5cd2c88db8d9919.tar.gz
plugins: rename runcmd's signal handler.
The previous name would collide with popen's. Even if the two are never used together, it's still a good idea not to have the same symbol in multiple object files.
Diffstat (limited to 'plugins/check_dig.c')
-rw-r--r--plugins/check_dig.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_dig.c b/plugins/check_dig.c
index 3c80cb7..c113d87 100644
--- a/plugins/check_dig.c
+++ b/plugins/check_dig.c
@@ -78,7 +78,7 @@ main (int argc, char **argv)
78 textdomain (PACKAGE); 78 textdomain (PACKAGE);
79 79
80 /* Set signal handling and alarm */ 80 /* Set signal handling and alarm */
81 if (signal (SIGALRM, popen_timeout_alarm_handler) == SIG_ERR) 81 if (signal (SIGALRM, runcmd_timeout_alarm_handler) == SIG_ERR)
82 usage_va(_("Cannot catch SIGALRM")); 82 usage_va(_("Cannot catch SIGALRM"));
83 83
84 /* Parse extra opts if any */ 84 /* Parse extra opts if any */