aboutsummaryrefslogtreecommitdiff
path: root/plugins/check_smtp.c
diff options
context:
space:
mode:
authorGravatar Ton Voon <tonvoon@users.sourceforge.net> 2005-03-04 21:58:40 +0000
committerGravatar Ton Voon <tonvoon@users.sourceforge.net> 2005-03-04 21:58:40 +0000
commitd713c5de2508f74d8db18dffee61ad2bbd3fa8ed (patch)
tree56edcb992a5647bf3c5433962c06b1d5f42b454f /plugins/check_smtp.c
parenta78fd137e972f62deb6bd2370ef869d256b0bfae (diff)
downloadmonitoring-plugins-d713c5de2508f74d8db18dffee61ad2bbd3fa8ed.tar.gz
Fixed // comments (Steve Greenland - 1143836)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1146 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_smtp.c')
-rw-r--r--plugins/check_smtp.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/check_smtp.c b/plugins/check_smtp.c
index 3b0e4694..f23e5d03 100644
--- a/plugins/check_smtp.c
+++ b/plugins/check_smtp.c
@@ -182,7 +182,7 @@ main (int argc, char **argv)
/* send the STARTTLS command */
send(sd, SMTP_STARTTLS, strlen(SMTP_STARTTLS), 0);
- recv(sd,buffer, MAX_INPUT_BUFFER-1, 0); // wait for it
+ recv(sd,buffer, MAX_INPUT_BUFFER-1, 0); /* wait for it */
if (!strstr (buffer, server_expect)) {
printf (_("Server does not support STARTTLS\n"));
return STATE_UNKNOWN;
@@ -254,8 +254,6 @@ main (int argc, char **argv)
if (n < nresponses) {
#ifdef HAVE_REGEX_H
cflags |= REG_EXTENDED | REG_NOSUB | REG_NEWLINE;
- //strncpy (regex_expect, responses[n], sizeof (regex_expect) - 1);
- //regex_expect[sizeof (regex_expect) - 1] = '\0';
errcode = regcomp (&preg, responses[n], cflags);
if (errcode != 0) {
regerror (errcode, &preg, errbuf, MAX_INPUT_BUFFER);
@@ -610,7 +608,7 @@ connect_STARTTLS (void)
/* this causes a seg faul
not sure why, being sloppy
and commenting it out */
- // SSL_free (ssl);
+ /* SSL_free (ssl); */
SSL_CTX_free(ctx);
my_close();