diff options
author | M. Sean Finney <seanius@users.sourceforge.net> | 2006-03-18 14:47:51 +0000 |
---|---|---|
committer | M. Sean Finney <seanius@users.sourceforge.net> | 2006-03-18 14:47:51 +0000 |
commit | cd8b45f633bfda6a414b4120672efa96123119f6 (patch) | |
tree | 212c8c567ca59df89cfb8e6d9a4015fa1aeccde5 | |
parent | 0d838e4312d6dad6d253c1c4b96bf28a03ed8988 (diff) | |
download | monitoring-plugins-cd8b45f633bfda6a414b4120672efa96123119f6.tar.gz |
return-logic related fix for cert checking, thanks to emmet hogan.
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1329 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r-- | plugins/check_http.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/plugins/check_http.c b/plugins/check_http.c index b86b2646..54e5ff29 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c @@ -755,11 +755,9 @@ check_http (void) np_net_ssl_init(sd); if (check_cert == TRUE) { result = np_net_ssl_check_cert(days_till_exp); - if(result != STATE_OK){ - np_net_ssl_cleanup(); - if(sd) close(sd); - return result; - } + np_net_ssl_cleanup(); + if(sd) close(sd); + return result; } } #endif /* HAVE_SSL */ |