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
This commit is contained in:
M. Sean Finney 2006-03-18 14:47:51 +00:00
parent 0d838e4312
commit cd8b45f633

View file

@ -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 */