summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Hazel <ph10@hermes.cam.ac.uk>2005-08-23 11:25:38 +0000
committerPhilip Hazel <ph10@hermes.cam.ac.uk>2005-08-23 11:25:38 +0000
commit9cec981fa37f4ad2f5234a2a5c296ae6ebebd019 (patch)
tree87390e02ed032a9b0881a218d2e548a34893e364
parentba18e66ae840cf03be48235bbad9f09e68dd2400 (diff)
Show support for crypteq for -bV and -d.
-rw-r--r--doc/doc-txt/ChangeLog5
-rw-r--r--src/src/exim.c5
2 files changed, 8 insertions, 2 deletions
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