From 4a14b04f2413edf5ad5c04353d74bc6168350452 Mon Sep 17 00:00:00 2001 From: Brian West Date: Mon, 12 Jan 2009 22:38:17 +0000 Subject: [PATCH] fix missing ref git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11150 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c b/src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c index 06d092f747..fd1a19d38d 100644 --- a/src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c +++ b/src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c @@ -674,7 +674,7 @@ abyss_bool handler_hook(TSession * r) switch_snprintf(buf, sizeof(buf), "Connection: close\r\n"); ConnWrite(r->conn, buf, (uint32_t) strlen(buf)); - if (html || text) { + if (html || text || xml) { ConnWrite(r->conn, "\r\n", 2); }