summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl DeBisschop <kdebisschop@users.sourceforge.net>2003-05-31 14:22:06 (GMT)
committerKarl DeBisschop <kdebisschop@users.sourceforge.net>2003-05-31 14:22:06 (GMT)
commit9e8b03d67d1bfdf9fdce4202a2dc1c287c9925b7 (patch)
treea28b5c351b72019d76d81abadf754ac992a36c64
parenta88f40d7e39a46dc10c4aaf42f4c1b2301caec33 (diff)
downloadmonitoring-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
-rw-r--r--plugins/check_dns.c2
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 {