diff options
author | Joe Watkins <krakjoe@php.net> | 2016-11-12 17:30:41 +0000 |
---|---|---|
committer | Joe Watkins <krakjoe@php.net> | 2016-11-12 17:30:41 +0000 |
commit | a2bc7cf9ca74c051bfd287c1b3d54c76945f10cc (patch) | |
tree | b45a5d42d9d2ab47f9f06180e12ca973d289a3cc /win32/sendmail.c | |
parent | 6c0e1ca4fa31a860a363abecd6376d99edff8833 (diff) | |
parent | 2104bea5d756dfa40b605a4a2765a3bc4637a76c (diff) | |
download | php-git-a2bc7cf9ca74c051bfd287c1b3d54c76945f10cc.tar.gz |
Merge branch 'master' of git.php.net:/php-src
Diffstat (limited to 'win32/sendmail.c')
-rw-r--r-- | win32/sendmail.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/win32/sendmail.c b/win32/sendmail.c index 9195f21503..5f27454e33 100644 --- a/win32/sendmail.c +++ b/win32/sendmail.c @@ -22,20 +22,14 @@ #include "php.h" /*php specific */ #include <stdio.h> #include <stdlib.h> -#ifndef NETWARE #include <winsock2.h> #include "time.h" # include <Ws2tcpip.h> -#else /* NETWARE */ -#include <netware/sendmail_nw.h> -#endif /* NETWARE */ #include <string.h> #include <math.h> -#ifndef NETWARE #include <malloc.h> #include <memory.h> #include <winbase.h> -#endif /* NETWARE */ #include "sendmail.h" #include "php_ini.h" #include "inet.h" @@ -72,11 +66,7 @@ char seps[] = " ,\t\n"; -#ifndef NETWARE char *php_mailer = "PHP 7 WIN32"; -#else -char *php_mailer = "PHP 7 NetWare"; -#endif /* NETWARE */ /* Error messages */ static char *ErrorMessages[] = |