SPAMD/malware: Log service identity with errors. Bug 1740
[exim.git] / src / src / tls.c
index f1371f04a6b39296052263779168e00d744b430a..60f0cfe986f6ff1e184d78644ba4a3756a66a5a3 100644 (file)
@@ -2,7 +2,7 @@
 *     Exim - an Internet mail transport agent    *
 *************************************************/
 
-/* Copyright (c) University of Cambridge 1995 - 2012 */
+/* Copyright (c) University of Cambridge 1995 - 2015 */
 /* See the file NOTICE for conditions of use and distribution. */
 
 /* This module provides TLS (aka SSL) support for Exim. The code for OpenSSL is
@@ -89,7 +89,7 @@ to_tz(uschar * tz)
 {
   uschar * old = US getenv("TZ");
   setenv("TZ", CS tz, 1);
-  tzset(); 
+  tzset();
   return old;
 }
 static void
@@ -99,7 +99,7 @@ restore_tz(uschar * tz)
     setenv("TZ", CS tz, 1);
   else
     unsetenv("TZ");
-  tzset(); 
+  tzset();
 }
 
 /*************************************************