From a3cf20ddc30a9c89c9d303bd50b781629f1cf7d0 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Fri, 24 Nov 2006 12:38:25 +0000 Subject: [PATCH] fix #39583 (ftp_put() does not change transfer mode to ASCII) --- ext/ftp/ftp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.1