diff options
author | Holger Weiss <holger@zedat.fu-berlin.de> | 2014-11-30 11:33:20 +0100 |
---|---|---|
committer | Holger Weiss <holger@zedat.fu-berlin.de> | 2014-11-30 11:33:20 +0100 |
commit | 0d14645cb059ce0e4154482b38b16341ba8ddaa3 (patch) | |
tree | ad22b0a8d29caa5d9b4b086c16616af176424eda /plugins/check_disk.c | |
parent | c0e6a6935bf8ea50f85a41b281dded815a8e083d (diff) | |
download | monitoring-plugins-0d14645cb059ce0e4154482b38b16341ba8ddaa3.tar.gz |
check_disk: Seperate declarations from code
Diffstat (limited to 'plugins/check_disk.c')
-rw-r--r-- | plugins/check_disk.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/check_disk.c b/plugins/check_disk.c index 75f8a9ac..eb573f5f 100644 --- a/plugins/check_disk.c +++ b/plugins/check_disk.c @@ -977,6 +977,7 @@ stat_path (struct parameter_list *p) int statdone = 0; int timer = timeout_interval; struct timespec req, rem; + req.tv_sec = 0; pthread_create(&stat_thread, NULL, do_stat_path, p); while (timer-- > 0) { |