mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-05-28 04:35:40 -04:00
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.
This commit is contained in:
parent
b57aeb1e5f
commit
49df5964eb
1 changed files with 2 additions and 0 deletions
|
|
@ -87,6 +87,8 @@ int errcode, excode;
|
|||
int server_port = SMTP_PORT;
|
||||
char *server_address = NULL;
|
||||
char *server_expect = NULL;
|
||||
char *mail_command = NULL;
|
||||
char *from_arg = NULL;
|
||||
int send_mail_from=0;
|
||||
int ncommands=0;
|
||||
int command_size=0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue