Small fix for queue files
This commit is contained in:
parent
7f0682ded6
commit
3e959e206c
@ -551,9 +551,9 @@ void flush_dir(char *ndir)
|
|||||||
}
|
}
|
||||||
p = strchr(p, ' ');
|
p = strchr(p, ' ');
|
||||||
p++;
|
p++;
|
||||||
if (strncmp(p, "NOR ", 4))
|
if (strncmp(p, "NOR ", 4) == 0)
|
||||||
fdn = FALSE;
|
fdn = FALSE;
|
||||||
else if (strncmp(p, "FDN ", 4))
|
else if (strncmp(p, "FDN ", 4) == 0)
|
||||||
fdn = TRUE;
|
fdn = TRUE;
|
||||||
else
|
else
|
||||||
fdn = FALSE;
|
fdn = FALSE;
|
||||||
|
Reference in New Issue
Block a user