diff options
author | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2014-01-28 03:16:35 (GMT) |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2014-01-28 03:16:35 (GMT) |
commit | 58e57b32bf733bf952794c056047fb810684a468 (patch) | |
tree | 4f222e708be66c8e4155109e95df0e2fdc6626c0 /plugins | |
parent | 189e2aa344b28a2cb5b5783450de201a9b2e3110 (diff) | |
download | monitoring-plugins-58e57b32bf733bf952794c056047fb810684a468.tar.gz |
check_dig: fix wrong IPv6 arguments order
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/check_dig.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_dig.c b/plugins/check_dig.c index 903019d..7575995 100644 --- a/plugins/check_dig.c +++ b/plugins/check_dig.c | |||
@@ -88,8 +88,8 @@ main (int argc, char **argv) | |||
88 | usage_va(_("Could not parse arguments")); | 88 | usage_va(_("Could not parse arguments")); |
89 | 89 | ||
90 | /* get the command to run */ | 90 | /* get the command to run */ |
91 | xasprintf (&command_line, "%s @%s -p %d %s -t %s %s %s", | 91 | xasprintf (&command_line, "%s %s @%s -p %d %s -t %s %s", |
92 | PATH_TO_DIG, dns_server, server_port, query_address, record_type, dig_args, query_transport); | 92 | PATH_TO_DIG, query_transport, dns_server, server_port, query_address, record_type, dig_args); |
93 | 93 | ||
94 | alarm (timeout_interval); | 94 | alarm (timeout_interval); |
95 | gettimeofday (&tv, NULL); | 95 | gettimeofday (&tv, NULL); |