home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / mail / sendmail / UCB / sendmail.8.6.12.patch.Z / sendmail.8.6.12.patch
Encoding:
Text File  |  1995-03-28  |  4.1 KB  |  154 lines

  1. *** RELEASE_NOTES.OLD    Wed Mar  8 14:25:29 1995
  2. --- RELEASE_NOTES    Tue Mar 28 18:38:58 1995
  3. ***************
  4. *** 1,9 ****
  5.               SENDMAIL RELEASE NOTES
  6. !          @(#)RELEASE_NOTES    8.6.11.1 (Berkeley) 3/8/95
  7.   
  8.   This listing shows the version of the sendmail binary, the version
  9.   of the sendmail configuration files, the date of release, and a
  10.   summary of the changes in that release.
  11.   
  12.   8.6.11/8.6.11    95/03/08
  13.       The ``possible attack'' message would be logged more often
  14. --- 1,20 ----
  15.               SENDMAIL RELEASE NOTES
  16. !          @(#)RELEASE_NOTES    8.6.12.1 (Berkeley) 3/28/95
  17.   
  18.   This listing shows the version of the sendmail binary, the version
  19.   of the sendmail configuration files, the date of release, and a
  20.   summary of the changes in that release.
  21. + 8.6.12/8.6.12    95/03/28
  22. +     Fix to IDENT code (it was getting the size of the reply buffer
  23. +         too small, so nothing was ever accepted).  Fix from several
  24. +         people, including Allan Johannesen, Shane Castle of the
  25. +         Boulder County Information Services, and Jeff Smith of
  26. +         Warwick University (all arrived within a few hours of
  27. +         each other!).
  28. +     Fix a problem that could cause large jobs to run out of
  29. +         file descriptors on systems that use vfork() rather
  30. +         than fork().
  31.   
  32.   8.6.11/8.6.11    95/03/08
  33.       The ``possible attack'' message would be logged more often
  34. *** cf/m4/version.m4.OLD    Sat Mar  4 08:42:38 1995
  35. --- cf/m4/version.m4    Tue Mar 28 18:27:10 1995
  36. ***************
  37. *** 32,39 ****
  38.   # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  39.   # SUCH DAMAGE.
  40.   #
  41. ! VERSIONID(`@(#)version.m4    8.6.11.1 (Berkeley) 3/4/95')
  42.   #
  43.   divert(0)
  44.   # Configuration version number
  45. ! DZ8.6.11
  46. --- 32,39 ----
  47.   # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  48.   # SUCH DAMAGE.
  49.   #
  50. ! VERSIONID(`@(#)version.m4    8.6.12.1 (Berkeley) 3/28/95')
  51.   #
  52.   divert(0)
  53.   # Configuration version number
  54. ! DZ8.6.12
  55. *** src/daemon.c.OLD    Tue Feb 28 15:40:25 1995
  56. --- src/daemon.c    Tue Mar 28 18:36:34 1995
  57. ***************
  58. *** 37,45 ****
  59.   
  60.   #ifndef lint
  61.   #ifdef DAEMON
  62. ! static char sccsid[] = "@(#)daemon.c    8.48.1.4 (Berkeley) 2/28/95 (with daemon mode)";
  63.   #else
  64. ! static char sccsid[] = "@(#)daemon.c    8.48.1.4 (Berkeley) 2/28/95 (without daemon mode)";
  65.   #endif
  66.   #endif /* not lint */
  67.   
  68. --- 37,45 ----
  69.   
  70.   #ifndef lint
  71.   #ifdef DAEMON
  72. ! static char sccsid[] = "@(#)daemon.c    8.48.1.5 (Berkeley) 3/28/95 (with daemon mode)";
  73.   #else
  74. ! static char sccsid[] = "@(#)daemon.c    8.48.1.5 (Berkeley) 3/28/95 (without daemon mode)";
  75.   #endif
  76.   #endif /* not lint */
  77.   
  78. ***************
  79. *** 1078,1084 ****
  80.   
  81.       /* get result */
  82.       p = &ibuf[0];
  83. !     nleft = sizeof(ibuf - 1);
  84.       while ((i = read(s, p, nleft)) > 0)
  85.       {
  86.           p += i;
  87. --- 1078,1084 ----
  88.   
  89.       /* get result */
  90.       p = &ibuf[0];
  91. !     nleft = sizeof ibuf - 1;
  92.       while ((i = read(s, p, nleft)) > 0)
  93.       {
  94.           p += i;
  95. *** src/deliver.c.OLD    Tue Mar 28 18:25:16 1995
  96. --- src/deliver.c    Tue Mar 28 18:26:17 1995
  97. ***************
  98. *** 33,39 ****
  99.    */
  100.   
  101.   #ifndef lint
  102. ! static char sccsid[] = "@(#)deliver.c    8.84.1.3 (Berkeley) 3/5/95";
  103.   #endif /* not lint */
  104.   
  105.   #include "sendmail.h"
  106. --- 33,39 ----
  107.    */
  108.   
  109.   #ifndef lint
  110. ! static char sccsid[] = "@(#)deliver.c    8.84.1.4 (Berkeley) 3/28/95";
  111.   #endif /* not lint */
  112.   
  113.   #include "sendmail.h"
  114. ***************
  115. *** 1182,1191 ****
  116.               extern int DtableSize;
  117.   
  118.               if (e->e_lockfp != NULL)
  119. !             {
  120. !                 fclose(e->e_lockfp);
  121. !                 e->e_lockfp = NULL;
  122. !             }
  123.   
  124.               /* child -- set up input & exec mailer */
  125.               (void) setsignal(SIGINT, SIG_IGN);
  126. --- 1182,1188 ----
  127.               extern int DtableSize;
  128.   
  129.               if (e->e_lockfp != NULL)
  130. !                 (void) close(fileno(e->e_lockfp));
  131.   
  132.               /* child -- set up input & exec mailer */
  133.               (void) setsignal(SIGINT, SIG_IGN);
  134. *** src/version.c.OLD    Tue Feb 28 11:11:00 1995
  135. --- src/version.c    Tue Mar 28 18:26:50 1995
  136. ***************
  137. *** 33,39 ****
  138.    */
  139.   
  140.   #ifndef lint
  141. ! static char sccsid[] = "@(#)version.c    8.6.11.1 (Berkeley) 2/28/95";
  142.   #endif /* not lint */
  143.   
  144. ! char    Version[] = "8.6.11";
  145. --- 33,39 ----
  146.    */
  147.   
  148.   #ifndef lint
  149. ! static char sccsid[] = "@(#)version.c    8.6.12.1 (Berkeley) 3/28/95";
  150.   #endif /* not lint */
  151.   
  152. ! char    Version[] = "8.6.12";
  153.