summaryrefslogtreecommitdiffstats
path: root/lib/utils_tcp.c
diff options
context:
space:
mode:
authorMatthias Eble <psychotrahe@users.sourceforge.net>2007-09-22 17:48:33 (GMT)
committerMatthias Eble <psychotrahe@users.sourceforge.net>2007-09-22 17:48:33 (GMT)
commitbb32ecb79c6e4d7161f0bee54e4197fca64d23d6 (patch)
treeaaa5d91b501882da1957c9199e278f2f1f21da0b /lib/utils_tcp.c
parentd23b17e6567d8eb983956b36b31a383f3cc639d2 (diff)
downloadmonitoring-plugins-bb32ecb79c6e4d7161f0bee54e4197fca64d23d6.tar.gz
substituted bool/true/false with int/TRUE/FALSE (discussed on np-devel)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1787 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'lib/utils_tcp.c')
-rw-r--r--lib/utils_tcp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/utils_tcp.c b/lib/utils_tcp.c
index b707519..2fefaf3 100644
--- a/lib/utils_tcp.c
+++ b/lib/utils_tcp.c
@@ -52,9 +52,9 @@ np_expect_match(char* status, char** server_expect, int expect_count, int all, i
52 } else 52 } else
53 if(verbose) puts("couldn't find it"); 53 if(verbose) puts("couldn't find it");
54 } 54 }
55 if ((all == true && match == expect_count) || 55 if ((all == TRUE && match == expect_count) ||
56 (! all && match >= 1)) { 56 (! all && match >= 1)) {
57 return true; 57 return TRUE;
58 } else 58 } else
59 return false; 59 return FALSE;
60} 60}