From: Joshua Colp Date: Sat, 21 Feb 2015 14:04:54 +0000 (+0000) Subject: http: Add missing html tag to 'httpstatus' functionality. X-Git-Tag: 11.17.0-rc1~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e46bb411ae903661cd8b64e3ab10f95e148de5f7;p=thirdparty%2Fasterisk.git http: Add missing html tag to 'httpstatus' functionality. ASTERISK-24724 #close Reported by: Ashley Sanders git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@432078 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/http.c b/main/http.c index 93dfe29f01..c9704ca74b 100644 --- a/main/http.c +++ b/main/http.c @@ -337,7 +337,7 @@ static int httpstatus_callback(struct ast_tcptls_session_instance *ser, } ast_str_append(&out, 0, - "Asterisk HTTP Status\r\n" + "Asterisk HTTP Status\r\n" "\r\n" "\r\n"); @@ -363,7 +363,7 @@ static int httpstatus_callback(struct ast_tcptls_session_instance *ser, } ast_variables_destroy(cookies); - ast_str_append(&out, 0, "
\r\n" "

  Asterisk™ HTTP Status

Asterisk and Digium are registered trademarks of Digium, Inc.
\r\n"); + ast_str_append(&out, 0, "
Asterisk and Digium are registered trademarks of Digium, Inc.
\r\n"); ast_http_send(ser, method, 200, NULL, NULL, out, 0, 0); return 0; }