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++;
|
||||
if (strncmp(p, "NOR ", 4))
|
||||
if (strncmp(p, "NOR ", 4) == 0)
|
||||
fdn = FALSE;
|
||||
else if (strncmp(p, "FDN ", 4))
|
||||
else if (strncmp(p, "FDN ", 4) == 0)
|
||||
fdn = TRUE;
|
||||
else
|
||||
fdn = FALSE;
|
||||
|
Reference in New Issue
Block a user