From: Jean-Marc Pigeon (Delson) Date: Fri, 13 Jun 2025 09:05:55 +0000 (-0400) Subject: fix doneqfile bount count down X-Git-Tag: tag-0.8~13 X-Git-Url: https://jmp-git.ovh.safe.ca/?a=commitdiff_plain;h=dbac43d605c8779c2ce3c8d058639b9856d549ac;p=jmp%2Fmailleur fix doneqfile bount count down --- diff --git a/lib/geseml.c b/lib/geseml.c index 3037aa5..e9c211b 100644 --- a/lib/geseml.c +++ b/lib/geseml.c @@ -497,9 +497,11 @@ if (list!=(TRATYP **)0) { ptr=list; while (*ptr!=(TRATYP *)0) { - if (((*ptr)->code=='C')&&(eml_countqfile((*ptr)->sessid,-1)==0)) { - (void) rou_alert(0,"%s JMPDBG need to remove <%s>",OPEP,(*ptr)->sessid); - (void) eml_deleteqfile((*ptr)->sessid); + if ((*ptr)->code=='C') { + if (eml_countqfile((*ptr)->sessid,-1)==0) { + (void) rou_alert(0,"%s JMPDBG need to remove <%s>",OPEP,(*ptr)->sessid); + (void) eml_deleteqfile((*ptr)->sessid); + } } else next=(TRATYP **)rou_addlist((void **)next,(void *)eml_duptra(*ptr));