Fix bug with aborted server TLS connection, under GnuTLS
[exim.git] / src / OS / os.c-BSDI
CommitLineData
271019bd
HSHR
1/*************************************************
2* Exim - an Internet mail transport agent *
3*************************************************/
4
5/* Copyright (c) 2016 Heiko Schlittermann <hs@schlittermann.de> */
6/* See the file NOTICE for conditions of use and distribution. */
7
8/* BSDI-specific code. This is concatenated onto the generic
9src/os.c file. */
10
11#ifndef OS_UNSETENV
12#define OS_UNSETENV
13
14int
f8c0a35c 15os_unsetenv(const unsigned char * name)
271019bd 16{
f8c0a35c 17unsetenv((char *)name);
93a680e4 18return 0;
271019bd 19}