diff options
author | unammx <unammx> | 2001-10-06 02:35:40 +0000 |
---|---|---|
committer | unammx <unammx> | 2001-10-06 02:35:40 +0000 |
commit | 7427d32da2c72d6c2f1a86290f301c5a7b39b66c (patch) | |
tree | c3b4bb70394b69d1dd4f0f7bc0ad9805a6e20105 /xml.pl.in | |
parent | 1fd40c7cdba11de1669d434cbff7481743755f27 (diff) |
2001-10-05 Arturo Espinosa Aldama <arturo@ximian.com>
* xml.pl.in (xst_xml_print_request_end): don't use print_comment:
this breaks the protocol. Not even using xst_xml_print_string, to
avoid the terminator getting into the debugs or the archiver.
Diffstat (limited to 'xml.pl.in')
-rw-r--r-- | xml.pl.in | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -77,9 +77,10 @@ sub xst_xml_print_begin } +# The frontend expects exactly this string. Don not alter. sub xst_xml_print_request_end { - &xst_xml_print_comment ('XST: end of request'); + print "\n<!-- XST: end of request -->\n"; } |