[exim-cvs] Eliminate one foolish way to break the build

Top Page
Delete this message
Reply to this message
Author: Exim Git Commits Mailing List
Date:  
To: exim-cvs
Subject: [exim-cvs] Eliminate one foolish way to break the build
Gitweb: http://git.exim.org/exim.git/commitdiff/417bfce49ac0ee6c37bdb83010cd45dc7a0f6196
Commit:     417bfce49ac0ee6c37bdb83010cd45dc7a0f6196
Parent:     4d832da12166a61882f951276d76e12738ad11a0
Author:     Jeremy Harris <jgh146exb@???>
AuthorDate: Tue May 20 22:53:48 2014 +0100
Committer:  Jeremy Harris <jgh146exb@???>
CommitDate: Wed May 21 16:07:27 2014 +0100


    Eliminate one foolish way to break the build
---
 src/src/tls.c |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)


diff --git a/src/src/tls.c b/src/src/tls.c
index b5ef965..ff2d20a 100644
--- a/src/src/tls.c
+++ b/src/src/tls.c
@@ -196,6 +196,8 @@ modify_variable(US"tls_sni",                  &dest_tsp->sni);
 #endif
 }


+
+#ifdef SUPPORT_TLS
 /************************************************
 *    TLS certificate name operations         *
 ************************************************/
@@ -255,7 +257,7 @@ return list;
 }



-#ifdef EXPERIMENTAL_CERTNAMES
+# ifdef EXPERIMENTAL_CERTNAMES
 /* Compare a domain name with a possibly-wildcarded name. Wildcards
 are restricted to a single one, as the first element of patterns
 having at least three dot-separated elements.  Case-independent.
@@ -328,7 +330,8 @@ else if ((subjdn = tls_cert_subject(cert, NULL)))
   }
 return FALSE;
 }
-#endif
+# endif    /*EXPERIMENTAL_CERTNAMES*/
+#endif    /*SUPPORY_TLS*/


/* vi: aw ai sw=2
*/