summaryrefslogtreecommitdiffstats
path: root/plugins/check_http.c
diff options
context:
space:
mode:
authorThomas Guyot-Sionnest <dermoth@users.sourceforge.net>2007-01-20 07:18:12 (GMT)
committerThomas Guyot-Sionnest <dermoth@users.sourceforge.net>2007-01-20 07:18:12 (GMT)
commit2c25c058289e2f999a2b3cff20d10f19bdea6196 (patch)
treea01f1e872ac01efffa72a92eed879284f7929ae5 /plugins/check_http.c
parent79a607391a105a51d9ed47bb2b457b5ab5163a68 (diff)
downloadmonitoring-plugins-2c25c058289e2f999a2b3cff20d10f19bdea6196.tar.gz
Fix bug #1632091: printf format string typos. Add some more cosmetic changes.
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1570 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_http.c')
-rw-r--r--plugins/check_http.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_http.c b/plugins/check_http.c
index 203ebe5..b81f214 100644
--- a/plugins/check_http.c
+++ b/plugins/check_http.c
@@ -1263,13 +1263,13 @@ print_help (void)
1263 1263
1264 printf (" %s\n", "-e, --expect=STRING"); 1264 printf (" %s\n", "-e, --expect=STRING");
1265 printf (" %s\n", _("String to expect in first (status) line of server response (default: ")); 1265 printf (" %s\n", _("String to expect in first (status) line of server response (default: "));
1266 printf ("%s\n", HTTP_EXPECT); 1266 printf ("%s)\n", HTTP_EXPECT);
1267 printf (" %s\n", _("If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)")); 1267 printf (" %s\n", _("If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)"));
1268 printf (" %s\n", "-s, --string=STRING"); 1268 printf (" %s\n", "-s, --string=STRING");
1269 printf (" %s\n", _("String to expect in the content")); 1269 printf (" %s\n", _("String to expect in the content"));
1270 printf (" %s\n", "-u, --url=PATH"); 1270 printf (" %s\n", "-u, --url=PATH");
1271 printf (" %s\n", _("URL to GET or POST (default: /)")); 1271 printf (" %s\n", _("URL to GET or POST (default: /)"));
1272 printf (" %s\n," "-P, --post=STRING"); 1272 printf (" %s\n", "-P, --post=STRING");
1273 printf (" %s\n", _("URL encoded http POST data")); 1273 printf (" %s\n", _("URL encoded http POST data"));
1274 printf (" %s\n", "-N, --no-body"); 1274 printf (" %s\n", "-N, --no-body");
1275 printf (" %s\n", _("Don't wait for document body: stop reading after headers.")); 1275 printf (" %s\n", _("Don't wait for document body: stop reading after headers."));