diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-08-27 19:20:41 +0200 |
---|---|---|
committer | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-08-27 19:20:41 +0200 |
commit | f1104f49a43285bf406d5c853b1b85b2dc62f4c0 (patch) | |
tree | 07f91675db7aacab75fe4c2a326eb66591f533e6 /plugins | |
parent | 776c51a66f6eb9c3d6f018cb3786c6441f6b7171 (diff) | |
download | monitoring-plugins-f1104f49a43285bf406d5c853b1b85b2dc62f4c0.tar.gz |
Fix one more typo
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/check_snmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c index bdf4b4f6..7851631c 100644 --- a/plugins/check_snmp.c +++ b/plugins/check_snmp.c | |||
@@ -191,7 +191,7 @@ int main(int argc, char **argv) { | |||
191 | mp_check overall = mp_check_init(); | 191 | mp_check overall = mp_check_init(); |
192 | 192 | ||
193 | mp_subcheck sc_successfull_query = mp_subcheck_init(); | 193 | mp_subcheck sc_successfull_query = mp_subcheck_init(); |
194 | xasprintf(&sc_successfull_query.output, "SNMP query was succesful"); | 194 | xasprintf(&sc_successfull_query.output, "SNMP query was successful"); |
195 | sc_successfull_query = mp_set_subcheck_state(sc_successfull_query, STATE_OK); | 195 | sc_successfull_query = mp_set_subcheck_state(sc_successfull_query, STATE_OK); |
196 | mp_add_subcheck_to_check(&overall, sc_successfull_query); | 196 | mp_add_subcheck_to_check(&overall, sc_successfull_query); |
197 | 197 | ||