diff options
author | Eric Stanley <estanley@nagios.com> | 2012-07-04 17:48:07 (GMT) |
---|---|---|
committer | Eric Stanley <estanley@nagios.com> | 2012-07-04 17:48:07 (GMT) |
commit | 49df5964eb6827eb3180f1dfc01c8efaa2859492 (patch) | |
tree | d967ce5e2dcfd64dfbef279106b20cfc386cc31c | |
parent | b57aeb1e5f6099ef97a178ff0e9ed22f0e7a1caf (diff) | |
download | monitoring-plugins-49df5964eb6827eb3180f1dfc01c8efaa2859492.tar.gz |
Re-added missing variable declarations to check_smtp.c
A recent update removed the declarations for a couple variables in
check_smtp.c that are still being used, which caused a failure
in the compilation of check_smtp.c. This commit restores those variable
declarations so the check_smtp.c will again compile.
-rw-r--r-- | plugins/check_smtp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/check_smtp.c b/plugins/check_smtp.c index 3758fd9..a861a71 100644 --- a/plugins/check_smtp.c +++ b/plugins/check_smtp.c | |||
@@ -87,6 +87,8 @@ int errcode, excode; | |||
87 | int server_port = SMTP_PORT; | 87 | int server_port = SMTP_PORT; |
88 | char *server_address = NULL; | 88 | char *server_address = NULL; |
89 | char *server_expect = NULL; | 89 | char *server_expect = NULL; |
90 | char *mail_command = NULL; | ||
91 | char *from_arg = NULL; | ||
90 | int send_mail_from=0; | 92 | int send_mail_from=0; |
91 | int ncommands=0; | 93 | int ncommands=0; |
92 | int command_size=0; | 94 | int command_size=0; |