mirror of https://github.com/BOINC/boinc.git
jeffc - bug fix in csv encode routine
svn path=/trunk/boinc/; revision=2552
This commit is contained in:
parent
dbe0c4941a
commit
d45d1e2029
|
@ -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().
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue