Changeset - 40f982ba351a
[Not reviewed]
default
0 1 0
LordOfWar - 16 years ago 2009-10-04 19:50:06

changed the != sign in if(stat(path_and_number, &buffer) != -1) to ==
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/server/distrend.c
Show inline comments
 
@@ -170,7 +170,7 @@ void mortition(struct distrenjob *head, 
 
  for(counter = 0; counter < job->total_frames; counter++)
 
    {
 
      _distren_asprintf(&path_and_number, "stor/job%d/out/%d.%s", job->jobnum, job->frameset[counter].num, job->output_format);
 
      if(stat(path_and_number, &buffer) != -1)
 
      if(stat(path_and_number, &buffer) == -1)
 
        {
 
          job->frameset[counter].status = FRAMESETSTATUS_UNASSIGNED;
 
          job->completed_frames--;
0 comments (0 inline, 0 general)