mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-05-28 04:35:40 -04:00
Minor cosmetic changes
This commit is contained in:
parent
e8044713d4
commit
7573aa1616
2 changed files with 10 additions and 7 deletions
|
|
@ -21,10 +21,11 @@
|
|||
#include "tap.h"
|
||||
|
||||
int
|
||||
main (int argc, char **argv)
|
||||
main(void)
|
||||
{
|
||||
char** server_expect;
|
||||
char **server_expect;
|
||||
int server_expect_count = 3;
|
||||
|
||||
plan_tests(9);
|
||||
|
||||
server_expect = malloc(sizeof(char*) * server_expect_count);
|
||||
|
|
@ -55,4 +56,3 @@ main (int argc, char **argv)
|
|||
|
||||
return exit_status();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -36,14 +36,16 @@
|
|||
} while (0)
|
||||
|
||||
enum np_match_result
|
||||
np_expect_match(char* status, char** server_expect, int expect_count, int flags)
|
||||
np_expect_match(char *status, char **server_expect, int expect_count, int flags)
|
||||
{
|
||||
int i, match = 0, partial = 0;
|
||||
|
||||
for (i = 0; i < expect_count; i++) {
|
||||
if (flags & NP_MATCH_VERBOSE)
|
||||
printf ("looking for [%s] %s [%s]\n", server_expect[i],
|
||||
(flags & NP_MATCH_EXACT) ? "in beginning of" : "anywhere in",
|
||||
status);
|
||||
printf("looking for [%s] %s [%s]\n", server_expect[i],
|
||||
(flags & NP_MATCH_EXACT) ?
|
||||
"in beginning of" : "anywhere in",
|
||||
status);
|
||||
|
||||
if (flags & NP_MATCH_EXACT) {
|
||||
if (strncmp(status, server_expect[i], strlen(server_expect[i])) == 0) {
|
||||
|
|
@ -62,6 +64,7 @@ np_expect_match(char* status, char** server_expect, int expect_count, int flags)
|
|||
}
|
||||
VERBOSE("couldn't find it");
|
||||
}
|
||||
|
||||
if ((flags & NP_MATCH_ALL && match == expect_count) ||
|
||||
(!(flags & NP_MATCH_ALL) && match >= 1))
|
||||
return NP_MATCH_SUCCESS;
|
||||
|
|
|
|||
Loading…
Reference in a new issue