summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/check_dig.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/plugins/check_dig.c b/plugins/check_dig.c
index fcd5d0d..ba41ebd 100644
--- a/plugins/check_dig.c
+++ b/plugins/check_dig.c
@@ -33,9 +33,7 @@
33#define SUMMARY "Test the DNS service on the specified host using dig\n" 33#define SUMMARY "Test the DNS service on the specified host using dig\n"
34 34
35int process_arguments (int, char **); 35int process_arguments (int, char **);
36int call_getopt (int, char **);
37int validate_arguments (void); 36int validate_arguments (void);
38int check_disk (int usp, int free_disk);
39void print_help (void); 37void print_help (void);
40void print_usage (void); 38void print_usage (void);
41 39
@@ -59,9 +57,7 @@ main (int argc, char **argv)
59 usage ("Could not parse arguments\n"); 57 usage ("Could not parse arguments\n");
60 58
61 /* get the command to run */ 59 /* get the command to run */
62 command_line = 60 asprintf (&command_line, "%s @%s %s", PATH_TO_DIG, dns_server, query_address);
63 ssprintf (command_line, "%s @%s %s", PATH_TO_DIG, dns_server,
64 query_address);
65 61
66 alarm (timeout_interval); 62 alarm (timeout_interval);
67 time (&start_time); 63 time (&start_time);