diff options
author | Subhendu Ghosh <sghosh@users.sourceforge.net> | 2002-06-19 05:11:52 (GMT) |
---|---|---|
committer | Subhendu Ghosh <sghosh@users.sourceforge.net> | 2002-06-19 05:11:52 (GMT) |
commit | f4c6f7f09305c1c9916da6ac4f7aadcb31e319e0 (patch) | |
tree | bec7f042f90eac26b30122806846fc6a0e3f13b7 /plugins/urlize.c | |
parent | d36016a7adf28424d7f4adaa50612c41f1937c3b (diff) | |
download | monitoring-plugins-f4c6f7f09305c1c9916da6ac4f7aadcb31e319e0.tar.gz |
more POSIX return value comparison related code fixes
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@55 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/urlize.c')
-rw-r--r-- | plugins/urlize.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/urlize.c b/plugins/urlize.c index 83c37da..c04ac0e 100644 --- a/plugins/urlize.c +++ b/plugins/urlize.c | |||
@@ -110,7 +110,7 @@ main (int argc, char **argv) | |||
110 | 110 | ||
111 | /* WARNING if output found on stderr */ | 111 | /* WARNING if output found on stderr */ |
112 | if (fgets (input_buffer, MAX_INPUT_BUFFER - 1, child_stderr)) | 112 | if (fgets (input_buffer, MAX_INPUT_BUFFER - 1, child_stderr)) |
113 | result = max (result, STATE_WARNING); | 113 | result = max_state (result, STATE_WARNING); |
114 | 114 | ||
115 | /* close stderr */ | 115 | /* close stderr */ |
116 | (void) fclose (child_stderr); | 116 | (void) fclose (child_stderr); |