Skip to content
Snippets Groups Projects
Commit 924faa81 authored by Oliver Bock's avatar Oliver Bock
Browse files

Removing workaround

* Fixed upstream: trunk/boinc/lib/app_ipc.C@r15954
* Should have been removed with 11ca8fc9 (no gfx-prefs since release_ABP1_004!)
parent 95e40dc4
No related branches found
No related tags found
No related merge requests found
...@@ -156,12 +156,9 @@ string BOINCClientAdapter::projectInformation() const ...@@ -156,12 +156,9 @@ string BOINCClientAdapter::projectInformation() const
{ {
string temp("<project_preferences />\n"); string temp("<project_preferences />\n");
// preferences available? (BOINC initializes them with 0) // use preferences if available (BOINC initializes them with 0)
if(m_UserData.project_preferences != 0) { if(m_UserData.project_preferences != 0) {
// ugly workaround for incomplete XML fragment returned by BOINC! temp = string(m_UserData.project_preferences);
temp = "<project_preferences>\n";
temp += string(m_UserData.project_preferences);
temp += "</project_preferences>\n";
} }
return temp; return temp;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment