From a3026b5d06a07baa98da0e9ac841975232a8a60b Mon Sep 17 00:00:00 2001 From: Claudio Sacerdoti Coen Date: Mon, 23 Feb 2004 12:50:57 +0000 Subject: [PATCH] Bug fix: the generated XML for DCs was not well-formed. --- helm/DEVEL/rdfly/rdfly.ml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/helm/DEVEL/rdfly/rdfly.ml b/helm/DEVEL/rdfly/rdfly.ml index 724d8f8bd..da06477dc 100644 --- a/helm/DEVEL/rdfly/rdfly.ml +++ b/helm/DEVEL/rdfly/rdfly.ml @@ -35,7 +35,8 @@ let msg_output_trailer msg = let msg_output_dc_header msg obj = msg_output_string msg "\n\n" ; - msg_output_string msg ("\n") + msg_output_string msg ("\n") ; + msg_output_string msg " " ;; let msg_output_dc_trailer msg = @@ -153,7 +154,7 @@ let daemonport = Helm_registry.get_int "rdfly.port";; let callback (req: Http_types.request) ch = try debug_print ("Connection from " ^ req#clientAddr) ; - debug_print ("Received request: " ^ req#path) ; + debug_print ("Received request: " ^ req#uri) ; (match req#path with | "/help" -> return_html_error "yeah right..." ch -- 2.39.2