summaryrefslogtreecommitdiffstats
path: root/plugins/check_http.c
diff options
context:
space:
mode:
authorKarl DeBisschop <kdebisschop@users.sourceforge.net>2002-12-19 19:20:25 (GMT)
committerKarl DeBisschop <kdebisschop@users.sourceforge.net>2002-12-19 19:20:25 (GMT)
commit202a5e4df9ca5f5dc3e4964a6aa02dc56cb9f044 (patch)
treeb59866510d6f219077acf895339be748b86a3ce6 /plugins/check_http.c
parent43e8380ceb0366708886164ec289c1da3c2ac1c7 (diff)
downloadmonitoring-plugins-202a5e4df9ca5f5dc3e4964a6aa02dc56cb9f044.tar.gz
remove spurious CRLF
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@231 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_http.c')
-rw-r--r--plugins/check_http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_http.c b/plugins/check_http.c
index 781d149..bbc76da 100644
--- a/plugins/check_http.c
+++ b/plugins/check_http.c
@@ -650,7 +650,7 @@ check_http (void)
650 } 650 }
651 651
652 /* send a newline so the server knows we're done with the request */ 652 /* send a newline so the server knows we're done with the request */
653 asprintf (&buf, "\r\n\r\n"); 653 asprintf (&buf, "\r\n");
654 send (sd, buf, strlen (buf), 0); 654 send (sd, buf, strlen (buf), 0);
655#ifdef HAVE_SSL 655#ifdef HAVE_SSL
656 } 656 }