sendmail 8.7.5
authordm <dm@openbsd.org>
Sat, 9 Mar 1996 22:08:29 +0000 (22:08 +0000)
committerdm <dm@openbsd.org>
Sat, 9 Mar 1996 22:08:29 +0000 (22:08 +0000)
usr.sbin/sendmail/RELEASE_NOTES
usr.sbin/sendmail/src/util.c
usr.sbin/sendmail/src/version.c

index c85c48f..7f212ec 100644 (file)
@@ -1,11 +1,16 @@
                        SENDMAIL RELEASE NOTES
-            @(#)RELEASE_NOTES  8.7.4.1 (Berkeley) 2/18/96
+            @(#)RELEASE_NOTES  8.7.5.1 (Berkeley) 3/4/96
 
 
 This listing shows the version of the sendmail binary, the version
 of the sendmail configuration files, the date of release, and a
 summary of the changes in that release.
 
+8.7.5/8.7.3    96/03/04
+       Fix glitch in 8.7.4 when putting certain internal lines; this can
+               in some case cause connections to hang.  Patch from Eric
+               Wassenaar.
+
 8.7.4/8.7.3    96/02/18
        SECURITY: In some cases it was still possible for an attacker to
                insert newlines into a queue file, thus allowing access to
index cee16d8..096f519 100644 (file)
@@ -33,7 +33,7 @@
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)util.c     8.84.1.1 (Berkeley) 2/18/96";
+static char sccsid[] = "@(#)util.c     8.84.1.2 (Berkeley) 3/4/96";
 #endif /* not lint */
 
 # include "sendmail.h"
@@ -990,7 +990,7 @@ putxline(l, mci, pxflags)
                fputs(mci->mci_mailer->m_eol, mci->mci_out);
                if (*l == '\n')
                {
-                       if (*++l != ' ' && *l != '\t' && l[1] != '\0')
+                       if (*++l != ' ' && *l != '\t' && *l != '\0')
                        {
                                (void) putc(' ', mci->mci_out);
                                if (TrafficLogFile != NULL)
index 9817429..3c6f7d1 100644 (file)
@@ -33,7 +33,7 @@
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)version.c  8.7.4.1 (Berkeley) 2/18/96";
+static char sccsid[] = "@(#)version.c  8.7.5.1 (Berkeley) 3/4/96";
 #endif /* not lint */
 
-char   Version[] = "8.7.4";
+char   Version[] = "8.7.5";