don't abort an entire queue run after a single locked file
authorEric Allman <eric@ucbvax.Berkeley.EDU>
Thu, 1 Apr 1993 23:09:54 +0000 (15:09 -0800)
committerEric Allman <eric@ucbvax.Berkeley.EDU>
Thu, 1 Apr 1993 23:09:54 +0000 (15:09 -0800)
SCCS-vsn: usr.sbin/sendmail/src/queue.c 6.41

usr/src/usr.sbin/sendmail/src/queue.c

index 165bbcd..28a1ce7 100644 (file)
@@ -10,9 +10,9 @@
 
 #ifndef lint
 #ifdef QUEUE
 
 #ifndef lint
 #ifdef QUEUE
-static char sccsid[] = "@(#)queue.c    6.40 (Berkeley) %G% (with queueing)";
+static char sccsid[] = "@(#)queue.c    6.41 (Berkeley) %G% (with queueing)";
 #else
 #else
-static char sccsid[] = "@(#)queue.c    6.40 (Berkeley) %G% (without queueing)";
+static char sccsid[] = "@(#)queue.c    6.41 (Berkeley) %G% (without queueing)";
 #endif
 #endif /* not lint */
 
 #endif
 #endif /* not lint */
 
@@ -478,7 +478,7 @@ runqueue(forkflag)
                {
                        if (Verbose)
                                printf("\nSkipping %s\n", w->w_name + 2);
                {
                        if (Verbose)
                                printf("\nSkipping %s\n", w->w_name + 2);
-                       return;
+                       continue;
                }
 
                dowork(w->w_name + 2, ForkQueueRuns, e);
                }
 
                dowork(w->w_name + 2, ForkQueueRuns, e);