From: Antony Dovgal Date: Fri, 24 Nov 2006 12:38:25 +0000 (+0000) Subject: fix #39583 (ftp_put() does not change transfer mode to ASCII) X-Git-Tag: RELEASE_1_0_0RC1~916 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a3cf20ddc30a9c89c9d303bd50b781629f1cf7d0;p=php fix #39583 (ftp_put() does not change transfer mode to ASCII) --- diff --git a/ext/ftp/ftp.h b/ext/ftp/ftp.h index 5405d278f1..94cccd5876 100644 --- a/ext/ftp/ftp.h +++ b/ext/ftp/ftp.h @@ -39,7 +39,7 @@ #define FTP_BUFSIZE 4096 typedef enum ftptype { - FTPTYPE_ASCII, + FTPTYPE_ASCII=1, FTPTYPE_IMAGE } ftptype_t;