Small fix for queue files

This commit is contained in:
Michiel Broek 2004-07-16 11:57:15 +00:00
parent 7f0682ded6
commit 3e959e206c

View File

@ -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;