mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-04-21 14:19:30 -04:00
Fixed // comments (Steve Greenland - 1143836)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1146 f882894a-f735-0410-b71e-b25c423dba1c
This commit is contained in:
parent
a78fd137e9
commit
d713c5de25
3 changed files with 4 additions and 6 deletions
|
|
@ -19,7 +19,7 @@
|
|||
*****************************************************************************/
|
||||
|
||||
const char *progname = "check_disk";
|
||||
const char *program_name = "check_disk"; // Required for coreutils libs
|
||||
const char *program_name = "check_disk"; /* Required for coreutils libs */
|
||||
const char *revision = "$Revision$";
|
||||
const char *copyright = "1999-2004";
|
||||
const char *email = "nagiosplug-devel@lists.sourceforge.net";
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
|
|
@ -408,7 +408,7 @@ get_ups_variable (const char *varname, char *buf, size_t buflen)
|
|||
}
|
||||
|
||||
if (strcmp (ptr, "ERR VAR-NOT-SUPPORTED") == 0) {
|
||||
//printf ("Error: Variable '%s' is not supported\n", varname);
|
||||
/*printf ("Error: Variable '%s' is not supported\n", varname);*/
|
||||
return NOSUCHVAR;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue