server: fix typo in result file name generation (from Keith)

This commit is contained in:
David Anderson 2015-11-20 13:19:18 -08:00
parent d4dec27a68
commit 2eabe3eab8
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ int create_result(
result.priority += priority_increase;
sprintf(result.name, "%s_%s", wu.name, result_name_suffix);
sprintf(base_outfile_name, "%s_r%ld", result.name, lrand48());
sprintf(base_outfile_name, "%s_r%ld_", result.name, lrand48());
retval = read_filename(
result_template_filename, result_template, sizeof(result_template)
);