From d45d1e20297a50fb9303724a34912cc14545df15 Mon Sep 17 00:00:00 2001 From: Jeff Cobb Date: Thu, 23 Oct 2003 19:58:20 +0000 Subject: [PATCH] jeffc - bug fix in csv encode routine svn path=/trunk/boinc/; revision=2552 --- lib/xml_util.C | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/xml_util.C b/lib/xml_util.C index 819b7ff65c..1fb6673a8d 100644 --- a/lib/xml_util.C +++ b/lib/xml_util.C @@ -549,12 +549,14 @@ std::string x_csv_encode_char(const unsigned char *bin, size_t nelements) { } unsigned int ival=bin[i]; rv << ival << std::endl << xml_indent(-2); - rv << ival; return rv.str(); } // // $Log$ +// Revision 1.16 2003/10/23 19:58:20 jeffc +// jeffc - bug fix in csv encode routine +// // Revision 1.15 2003/10/23 19:18:38 jeffc // jeffc - put back in line feeds - no longer using parese_str(). //