diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2003-09-10 22:48:00 +0800 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2003-09-10 22:48:00 +0800 |
commit | 0750b01a54a56575783bf0c4f19e26d445ce43da (patch) | |
tree | 8e4384aba4f0d7c869b7f184db1497a6d8c7c6e4 /mail/exim | |
parent | 94360fcb03cdb28808d4a4a3a7839848f61d8bfc (diff) | |
download | freebsd-ports-graphics-0750b01a54a56575783bf0c4f19e26d445ce43da.tar.gz freebsd-ports-graphics-0750b01a54a56575783bf0c4f19e26d445ce43da.tar.zst freebsd-ports-graphics-0750b01a54a56575783bf0c4f19e26d445ce43da.zip |
Fix another SASLAUTHD segfault.
I'm not bumping PORTREVISION for this one; I've _just_ bumped it for
major changes a few moments ago and you'd have to be pretty unlucky
to pick up those changes but not this one.
Reported by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
Submitted by: Lukasz Grochal <lgrochal@rmf.pl>
Diffstat (limited to 'mail/exim')
-rw-r--r-- | mail/exim/files/patch-src::auths::pwcheck.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mail/exim/files/patch-src::auths::pwcheck.c b/mail/exim/files/patch-src::auths::pwcheck.c new file mode 100644 index 00000000000..3f887e04649 --- /dev/null +++ b/mail/exim/files/patch-src::auths::pwcheck.c @@ -0,0 +1,12 @@ +--- src/auths/pwcheck.c.orig Wed Sep 10 16:33:51 2003 ++++ src/auths/pwcheck.c Wed Sep 10 16:34:53 2003 +@@ -210,7 +210,8 @@ + CYRUS_SASLAUTHD_SOCKET, strerror(errno)); + if (reply) + *reply = string_sprintf("cannot connect to saslauthd daemon at " +- "%s: %s", strerror(errno)); ++ "%s: %s", CYRUS_SASLAUTHD_SOCKET, ++ strerror(errno)); + return PWCHECK_FAIL; + } + |