X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/271019bd0730f90f81d44ea0946707588df242d6..278293d39d5c3f77e6deb4c52a7068ea4a1d48dd:/src/src/tls.c diff --git a/src/src/tls.c b/src/src/tls.c index 858caa227..f34cf6321 100644 --- a/src/src/tls.c +++ b/src/src/tls.c @@ -2,13 +2,13 @@ * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) University of Cambridge 1995 - 2015 */ +/* Copyright (c) University of Cambridge 1995 - 2016 */ /* See the file NOTICE for conditions of use and distribution. */ /* This module provides TLS (aka SSL) support for Exim. The code for OpenSSL is based on a patch that was originally contributed by Steve Haslam. It was adapted from stunnel, a GPL program by Michal Trojnara. The code for GNU TLS is -based on a patch contributed by Nikos Mavroyanopoulos. Because these packages +based on a patch contributed by Nikos Mavrogiannopoulos. Because these packages are so very different, the functions for each are kept in separate files. The relevant file is #included as required, after any any common functions. @@ -99,7 +99,7 @@ restore_tz(uschar * tz) if (tz) (void) setenv("TZ", CCS tz, 1); else - (void) os_unsetenv("TZ"); + (void) os_unsetenv(US"TZ"); tzset(); }