From 3e959e206cf2acb02e8e5e47cad64f6b3abb298d Mon Sep 17 00:00:00 2001 From: Michiel Broek Date: Fri, 16 Jul 2004 11:57:15 +0000 Subject: [PATCH] Small fix for queue files --- mbfido/queue.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mbfido/queue.c b/mbfido/queue.c index 457fac28..ac93e68d 100644 --- a/mbfido/queue.c +++ b/mbfido/queue.c @@ -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;