summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--THANKS.in1
-rw-r--r--plugins/check_disk.c1
3 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 166b2a5..7f6db96 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
12007-05-03 22:34 psychotrahe
2
3 * plugins/check_disk.c: - Fix partition selection if if last
4 argument is a pathname/device without using -p
5
12007-04-10 08:17 dermoth 62007-04-10 08:17 dermoth
2 7
3 * po/: POTFILES.in, de.po, fr.po, nagios-plugins.pot: Add some 8 * po/: POTFILES.in, de.po, fr.po, nagios-plugins.pot: Add some
diff --git a/THANKS.in b/THANKS.in
index c9d604b..b0ed31b 100644
--- a/THANKS.in
+++ b/THANKS.in
@@ -217,3 +217,4 @@ Mark Favas
217Felix Frank 217Felix Frank
218Denis Knauf 218Denis Knauf
219Matthias Flacke 219Matthias Flacke
220Emil Michles
diff --git a/plugins/check_disk.c b/plugins/check_disk.c
index 4872efc..c32c7ab 100644
--- a/plugins/check_disk.c
+++ b/plugins/check_disk.c
@@ -734,6 +734,7 @@ process_arguments (int argc, char **argv)
734 734
735 if (argc > c && path == NULL) { 735 if (argc > c && path == NULL) {
736 se = np_add_parameter(&path_select_list, strdup(argv[c++])); 736 se = np_add_parameter(&path_select_list, strdup(argv[c++]));
737 path_selected = true;
737 set_all_thresholds(se); 738 set_all_thresholds(se);
738 } 739 }
739 740