From: Philip Hazel Date: Tue, 23 Aug 2005 11:25:38 +0000 (+0000) Subject: Show support for crypteq for -bV and -d. X-Git-Tag: exim-4_53~43 X-Git-Url: https://git.exim.org/exim.git/commitdiff_plain/9cec981fa37f4ad2f5234a2a5c296ae6ebebd019 Show support for crypteq for -bV and -d. --- diff --git a/doc/doc-txt/ChangeLog b/doc/doc-txt/ChangeLog index 31789929d..663454888 100644 --- a/doc/doc-txt/ChangeLog +++ b/doc/doc-txt/ChangeLog @@ -1,4 +1,4 @@ -$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.210 2005/08/23 10:29:10 ph10 Exp $ +$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.211 2005/08/23 11:25:38 ph10 Exp $ Change log file for Exim from version 4.21 ------------------------------------------- @@ -119,6 +119,9 @@ PH/28 Exim tries to create and chdir to its spool directory when it starts; privilege). It wasn't ignoring creation failures other than "already exists". +PH/29 Added "crypteq" to the list of supported features that Exim outputs when + -bV or -d is used. + Exim version 4.52 ----------------- diff --git a/src/src/exim.c b/src/src/exim.c index 8ed39d654..f4d537800 100644 --- a/src/src/exim.c +++ b/src/src/exim.c @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/exim.c,v 1.25 2005/08/23 10:29:10 ph10 Exp $ */ +/* $Cambridge: exim/src/src/exim.c,v 1.26 2005/08/23 11:25:38 ph10 Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -833,6 +833,9 @@ fprintf(f, "Using tdb\n"); #endif fprintf(f, "Support for:"); +#ifdef SUPPORT_CRYPTEQ + fprintf(f, " crypteq"); +#endif #if HAVE_ICONV fprintf(f, " iconv()"); #endif