fix botch causing queued headers to have ?XX? prefixes
authorEric Allman <eric@ucbvax.Berkeley.EDU>
Mon, 4 Jan 1993 04:08:37 +0000 (20:08 -0800)
committerEric Allman <eric@ucbvax.Berkeley.EDU>
Mon, 4 Jan 1993 04:08:37 +0000 (20:08 -0800)
SCCS-vsn: usr.sbin/sendmail/src/headers.c 6.3
SCCS-vsn: usr.sbin/sendmail/src/version.c 6.5

usr/src/usr.sbin/sendmail/src/headers.c
usr/src/usr.sbin/sendmail/src/version.c

index 3e5b649..2dd0b30 100644 (file)
@@ -7,7 +7,7 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)headers.c  6.2 (Berkeley) %G%";
+static char sccsid[] = "@(#)headers.c  6.3 (Berkeley) %G%";
 #endif /* not lint */
 
 # include <errno.h>
 #endif /* not lint */
 
 # include <errno.h>
@@ -52,7 +52,7 @@ chompheader(line, def, e)
        /* strip off options */
        clrbitmap(mopts);
        p = line;
        /* strip off options */
        clrbitmap(mopts);
        p = line;
-       if (def && *p == '?')
+       if (*p == '?')
        {
                /* have some */
                register char *q = strchr(p + 1, *p);
        {
                /* have some */
                register char *q = strchr(p + 1, *p);
index 2889d98..6828a01 100644 (file)
@@ -7,7 +7,7 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)version.c  6.4 (Berkeley) %G%";
+static char sccsid[] = "@(#)version.c  6.5 (Berkeley) %G%";
 #endif /* not lint */
 
 #endif /* not lint */
 
-char   Version[] = "ALPHA-6.4";
+char   Version[] = "ALPHA-6.5";