jeffc - bug fix in csv encode routine

svn path=/trunk/boinc/; revision=2552
This commit is contained in:
Jeff Cobb 2003-10-23 19:58:20 +00:00
parent dbe0c4941a
commit d45d1e2029
1 changed files with 3 additions and 1 deletions

View File

@ -549,12 +549,14 @@ std::string x_csv_encode_char(const unsigned char *bin, size_t nelements) {
} }
unsigned int ival=bin[i]; unsigned int ival=bin[i];
rv << ival << std::endl << xml_indent(-2); rv << ival << std::endl << xml_indent(-2);
rv << ival;
return rv.str(); return rv.str();
} }
// //
// $Log$ // $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 // Revision 1.15 2003/10/23 19:18:38 jeffc
// jeffc - put back in line feeds - no longer using parese_str(). // jeffc - put back in line feeds - no longer using parese_str().
// //