diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-09-15 10:13:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-09-15 10:13:33 +0200 |
commit | a3cf9041af810770daf5d9b83f1906fa9bb0dd11 (patch) | |
tree | 9b9b45a6a611c4f37cf5dd447b37f74e48d56c14 /lib/thresholds.h | |
parent | f69aba3129d672b88f5bae187fb971fc0ac228ed (diff) | |
parent | 5a2c1b2c3aeb99e7a703b0c5f6fe1a21d29b3be4 (diff) | |
download | monitoring-plugins-a3cf9041af810770daf5d9b83f1906fa9bb0dd11.tar.gz |
Merge pull request #2085 from RincewindsHat/refactor/check_curl
Refactor/check curl and introduce new output formatting
Diffstat (limited to 'lib/thresholds.h')
-rw-r--r-- | lib/thresholds.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/thresholds.h b/lib/thresholds.h index 5f9f9247..f8647681 100644 --- a/lib/thresholds.h +++ b/lib/thresholds.h | |||
@@ -6,12 +6,12 @@ | |||
6 | /* | 6 | /* |
7 | * Old threshold type using the old range type | 7 | * Old threshold type using the old range type |
8 | */ | 8 | */ |
9 | typedef struct thresholds_struct { | 9 | typedef struct { |
10 | range *warning; | 10 | range *warning; |
11 | range *critical; | 11 | range *critical; |
12 | } thresholds; | 12 | } thresholds; |
13 | 13 | ||
14 | typedef struct mp_thresholds_struct { | 14 | typedef struct { |
15 | bool warning_is_set; | 15 | bool warning_is_set; |
16 | mp_range warning; | 16 | mp_range warning; |
17 | bool critical_is_set; | 17 | bool critical_is_set; |