diff options
| author | Dirk Mueller <dmueller@suse.com> | 2026-02-16 11:22:39 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-16 11:22:39 +0100 |
| commit | 07a249a5d74a980ca78cead569de5351963cc561 (patch) | |
| tree | 020e74baf838d6bf0bd93aaed9cc6e6218fd102c /plugins/check_users.c | |
| parent | 423d0c52674bfa4ec49e4ae8bce645131f657f74 (diff) | |
| download | monitoring-plugins-07a249a5d74a980ca78cead569de5351963cc561.tar.gz | |
Fix typo in enum MP_PARSING_SUCCES(S) (#2233)
Diffstat (limited to 'plugins/check_users.c')
| -rw-r--r-- | plugins/check_users.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_users.c b/plugins/check_users.c index 3b2e265e..4027d21a 100644 --- a/plugins/check_users.c +++ b/plugins/check_users.c | |||
| @@ -222,7 +222,7 @@ check_users_config_wrapper process_arguments(int argc, char **argv) { | |||
| 222 | exit(STATE_UNKNOWN); | 222 | exit(STATE_UNKNOWN); |
| 223 | } | 223 | } |
| 224 | 224 | ||
| 225 | if (tmp.error == MP_PARSING_SUCCES) { | 225 | if (tmp.error == MP_PARSING_SUCCESS) { |
| 226 | result.config.thresholds.warning = tmp.range; | 226 | result.config.thresholds.warning = tmp.range; |
| 227 | result.config.thresholds.warning_is_set = true; | 227 | result.config.thresholds.warning_is_set = true; |
| 228 | } else { | 228 | } else { |
| @@ -238,7 +238,7 @@ check_users_config_wrapper process_arguments(int argc, char **argv) { | |||
| 238 | exit(STATE_UNKNOWN); | 238 | exit(STATE_UNKNOWN); |
| 239 | } | 239 | } |
| 240 | 240 | ||
| 241 | if (tmp.error == MP_PARSING_SUCCES) { | 241 | if (tmp.error == MP_PARSING_SUCCESS) { |
| 242 | result.config.thresholds.critical = tmp.range; | 242 | result.config.thresholds.critical = tmp.range; |
| 243 | result.config.thresholds.critical_is_set = true; | 243 | result.config.thresholds.critical_is_set = true; |
| 244 | } else { | 244 | } else { |
