diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2003-01-02 04:10:20 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2003-01-02 04:10:20 +0000 |
commit | 3169487a869988b35f3ef8ee4e7dae0f52ba4d26 (patch) | |
tree | c5a5d982540001aed5b5f51ee7c38c9039ce4581 /mail/sendmail/files/patch-sfsasl.c | |
parent | - new feature GUI_KDE (diff) |
- remove libsm.a libsmutil.a libsmdb.a
- add some patches submitted by Stephane Lentz,
from http://www.sendmail.org/~ca/email/sm-812.html
- If you use Cyrus-SASLv2 and DIGEST-MD5 then transferring larger messages
- MSP might complain during a queue run about "MX list for ... points back to ...".
Notes
Notes:
svn path=/head/; revision=72136
Diffstat (limited to 'mail/sendmail/files/patch-sfsasl.c')
-rw-r--r-- | mail/sendmail/files/patch-sfsasl.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/mail/sendmail/files/patch-sfsasl.c b/mail/sendmail/files/patch-sfsasl.c new file mode 100644 index 000000000000..7cd5d0b29c16 --- /dev/null +++ b/mail/sendmail/files/patch-sfsasl.c @@ -0,0 +1,23 @@ +--- sendmail/sfsasl.c 27 Aug 2002 01:35:17 -0000 8.91.2.1 ++++ sendmail/sfsasl.c 12 Sep 2002 21:07:50 -0000 8.91.2.2 +@@ -182,7 +182,7 @@ + int result; + ssize_t len; + # if SASL >= 20000 +- const char *outbuf = NULL; ++ static const char *outbuf = NULL; + # else /* SASL >= 20000 */ + static char *outbuf = NULL; + # endif /* SASL >= 20000 */ +@@ -199,7 +199,11 @@ + ** if necessary. + */ + ++# if SASL >= 20000 ++ while (outlen == 0) ++# else /* SASL >= 20000 */ + while (outbuf == NULL && outlen == 0) ++# endif /* SASL >= 20000 */ + { + len = sm_io_read(so->fp, SM_TIME_DEFAULT, buf, size); + if (len <= 0) |