Skip to content

Commit

Permalink
Fixed typo in BOINC WU generation.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://cvs.lpds.sztaki.hu/var/lib/svn/szdg/dcapi/trunk@2575 a7169a2c-3604-0410-bc95-c702d8d87f7a
  • Loading branch information
a.visegradi authored and Adam Visegradi committed Dec 2, 2013
1 parent 8a9acb5 commit 6919f4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dcapi/boinc/wu.C
Original file line number Diff line number Diff line change
Expand Up @@ -1196,7 +1196,7 @@ static void append_wu_file_info(GString *tmpl, int idx, DC_PhysicalFile *file)
if (file != NULL && file->persistentonclient == 1)
{
g_string_append(tmpl, "\t<sticky/>\n");
g_string_append(tmpl, "\t<nodelete/>\n");
g_string_append(tmpl, "\t<no_delete/>\n");
}
g_string_append(tmpl, "</file_info>\n");
}
Expand All @@ -1208,7 +1208,7 @@ static void append_wu_remote_file_info(GString *tmpl, int idx, DC_RemoteFile *fi
if (file != NULL && file->persistentonclient == 1)
{
g_string_append(tmpl, "\t<sticky/>\n");
g_string_append(tmpl, "\t<nodelete/>\n");
g_string_append(tmpl, "\t<no_delete/>\n");
}
gchar **alts = replace_regex(file->url);
if (!alts)
Expand Down

0 comments on commit 6919f4d

Please sign in to comment.