diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-05-31 14:22:06 (GMT) |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-05-31 14:22:06 (GMT) |
commit | 9e8b03d67d1bfdf9fdce4202a2dc1c287c9925b7 (patch) | |
tree | a28b5c351b72019d76d81abadf754ac992a36c64 /plugins/check_dns.c | |
parent | a88f40d7e39a46dc10c4aaf42f4c1b2301caec33 (diff) | |
download | monitoring-plugins-9e8b03d67d1bfdf9fdce4202a2dc1c287c9925b7.tar.gz |
typo in args to terminate
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/branches/release-1.3.0@525 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_dns.c')
-rw-r--r-- | plugins/check_dns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_dns.c b/plugins/check_dns.c index df8359c..b110f02 100644 --- a/plugins/check_dns.c +++ b/plugins/check_dns.c | |||
@@ -139,7 +139,7 @@ main (int argc, char **argv) | |||
139 | address = strdup (temp_buffer); | 139 | address = strdup (temp_buffer); |
140 | strip (address); | 140 | strip (address); |
141 | if (address==NULL || strlen(address)==0) | 141 | if (address==NULL || strlen(address)==0) |
142 | terminate (STATE_CRITICAL, "DNS CRITICAL - '%s' returned empty host name string", %s); | 142 | terminate (STATE_CRITICAL, "DNS CRITICAL - '%s' returned empty host name string", NSLOOKUP_COMMAND); |
143 | result = STATE_OK; | 143 | result = STATE_OK; |
144 | } | 144 | } |
145 | else { | 145 | else { |