mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-05-28 04:35:40 -04:00
cleanup asprintf, old function decls
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@189 f882894a-f735-0410-b71e-b25c423dba1c
This commit is contained in:
parent
41367d9625
commit
9728dcad93
1 changed files with 1 additions and 5 deletions
|
|
@ -33,9 +33,7 @@
|
|||
#define SUMMARY "Test the DNS service on the specified host using dig\n"
|
||||
|
||||
int process_arguments (int, char **);
|
||||
int call_getopt (int, char **);
|
||||
int validate_arguments (void);
|
||||
int check_disk (int usp, int free_disk);
|
||||
void print_help (void);
|
||||
void print_usage (void);
|
||||
|
||||
|
|
@ -59,9 +57,7 @@ main (int argc, char **argv)
|
|||
usage ("Could not parse arguments\n");
|
||||
|
||||
/* get the command to run */
|
||||
command_line =
|
||||
ssprintf (command_line, "%s @%s %s", PATH_TO_DIG, dns_server,
|
||||
query_address);
|
||||
asprintf (&command_line, "%s @%s %s", PATH_TO_DIG, dns_server, query_address);
|
||||
|
||||
alarm (timeout_interval);
|
||||
time (&start_time);
|
||||
|
|
|
|||
Loading…
Reference in a new issue