change sign on WkTimeFact so that is closer to what most people want
authorEric Allman <eric@ucbvax.Berkeley.EDU>
Sun, 22 Sep 1985 06:52:02 +0000 (22:52 -0800)
committerEric Allman <eric@ucbvax.Berkeley.EDU>
Sun, 22 Sep 1985 06:52:02 +0000 (22:52 -0800)
SCCS-vsn: usr.sbin/sendmail/src/queue.c 5.13
SCCS-vsn: usr.sbin/sendmail/src/conf.c 5.8
SCCS-vsn: usr.sbin/sendmail/src/version.c 5.20

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

index b068846..2e8252c 100644 (file)
@@ -9,7 +9,7 @@
 */
 
 #ifndef lint
 */
 
 #ifndef lint
-static char    SccsId[] = "@(#)conf.c  5.7 (Berkeley) %G%";
+static char    SccsId[] = "@(#)conf.c  5.8 (Berkeley) %G%";
 #endif not lint
 
 # include <pwd.h>
 #endif not lint
 
 # include <pwd.h>
@@ -145,7 +145,7 @@ setdefaults()
        SpaceSub = ' ';
        WkRecipFact = 1000;
        WkClassFact = 1800;
        SpaceSub = ' ';
        WkRecipFact = 1000;
        WkClassFact = 1800;
-       WkTimeFact = -600;
+       WkTimeFact = 600;
        FileMode = 0644;
        DefUid = 1;
        DefGid = 1;
        FileMode = 0644;
        DefUid = 1;
        DefGid = 1;
index 1308c96..d6c8a0f 100644 (file)
 
 # ifndef QUEUE
 # ifndef lint
 
 # ifndef QUEUE
 # ifndef lint
-static char    SccsId[] = "@(#)queue.c 5.12 (Berkeley) %G%     (no queueing)";
+static char    SccsId[] = "@(#)queue.c 5.13 (Berkeley) %G%     (no queueing)";
 # endif not lint
 # else QUEUE
 
 # ifndef lint
 # endif not lint
 # else QUEUE
 
 # ifndef lint
-static char    SccsId[] = "@(#)queue.c 5.12 (Berkeley) %G%";
+static char    SccsId[] = "@(#)queue.c 5.13 (Berkeley) %G%";
 # endif not lint
 
 /*
 # endif not lint
 
 /*
@@ -706,7 +706,7 @@ readqf(e, full)
                        break;
 
                  case 'P':             /* message priority */
                        break;
 
                  case 'P':             /* message priority */
-                       e->e_msgpriority = atol(&buf[1]) - WkTimeFact;
+                       e->e_msgpriority = atol(&buf[1]) + WkTimeFact;
                        break;
 
                  case '\0':            /* blank line; ignore */
                        break;
 
                  case '\0':            /* blank line; ignore */
index 8f03e3e..d642358 100644 (file)
@@ -9,7 +9,7 @@
 */
 
 #ifndef lint
 */
 
 #ifndef lint
-static char    SccsId[] = "@(#)version.c       5.19 (Berkeley) %G%";
+static char    SccsId[] = "@(#)version.c       5.20 (Berkeley) %G%";
 #endif not lint
 
 #endif not lint
 
-char   Version[] = "5.19";
+char   Version[] = "5.20";