diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-03-30 22:34:20 +0200 |
---|---|---|
committer | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-03-30 22:34:20 +0200 |
commit | f84f614f219b395810e4ca35d5eb5f5a8d2f1d5b (patch) | |
tree | c5f77960a8130b65bce6b19028ed801060dc5853 | |
parent | a0710dbd72ea6314cf6a1ec50d2fa3c3c0543748 (diff) | |
download | monitoring-plugins-f84f614f219b395810e4ca35d5eb5f5a8d2f1d5b.tar.gz |
Bugfix in output
-rw-r--r-- | lib/output.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/output.c b/lib/output.c index 61fbf832..01e50770 100644 --- a/lib/output.c +++ b/lib/output.c | |||
@@ -13,6 +13,7 @@ | |||
13 | 13 | ||
14 | // == Global variables | 14 | // == Global variables |
15 | static mp_output_format output_format = MP_FORMAT_DEFAULT; | 15 | static mp_output_format output_format = MP_FORMAT_DEFAULT; |
16 | static mp_output_detail_level level_of_detail = MP_DETAIL_ALL; | ||
16 | 17 | ||
17 | // == Prototypes == | 18 | // == Prototypes == |
18 | static char *fmt_subcheck_output(mp_output_format output_format, mp_subcheck check, unsigned int indentation); | 19 | static char *fmt_subcheck_output(mp_output_format output_format, mp_subcheck check, unsigned int indentation); |
@@ -202,7 +203,12 @@ mp_state_enum mp_compute_subcheck_state(const mp_subcheck check) { | |||
202 | } | 203 | } |
203 | 204 | ||
204 | mp_subcheck_list *scl = check.subchecks; | 205 | mp_subcheck_list *scl = check.subchecks; |
205 | mp_state_enum result = check.default_state; | 206 | |
207 | if (scl == NULL) { | ||
208 | return check.default_state; | ||
209 | } | ||
210 | |||
211 | mp_state_enum result = STATE_OK; | ||
206 | 212 | ||
207 | while (scl != NULL) { | 213 | while (scl != NULL) { |
208 | result = max_state_alt(result, mp_compute_subcheck_state(scl->subcheck)); | 214 | result = max_state_alt(result, mp_compute_subcheck_state(scl->subcheck)); |