From a1d04563f35db03df12f3ea4ec265f30a67b4544 Mon Sep 17 00:00:00 2001 From: "Eric J. Korpela" Date: Thu, 25 Sep 2003 00:57:45 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=2360 --- lib/xml_util.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/xml_util.C b/lib/xml_util.C index 7f13ee0641..8a4e9b2666 100644 --- a/lib/xml_util.C +++ b/lib/xml_util.C @@ -309,7 +309,7 @@ std::string xml_encode_string(const unsigned char *input, size_t length=0) { } } else { char buf[16]; - sprintf(buf,"&#%.3d",input[i]); + sprintf(buf,"&#%.3d;",input[i]); rv+=buf; } }