X-Git-Url: https://git.exim.org/users/heiko/exim.git/blobdiff_plain/93a680e4c9c899d86ff3fde0933fb5367b34af50..5739711991a412084e89905e2ebaf396ab8fb6b1:/src/OS/os.c-BSDI?ds=inline diff --git a/src/OS/os.c-BSDI b/src/OS/os.c-BSDI index 03a7a1cef..3cef2ac6d 100644 --- a/src/OS/os.c-BSDI +++ b/src/OS/os.c-BSDI @@ -12,8 +12,8 @@ src/os.c file. */ #define OS_UNSETENV int -os_unsetenv(const uschar * name) +os_unsetenv(const unsigned char * name) { -unsetenv(CS name); +unsetenv((char *)name); return 0; }