Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe@sourceware.cygnus.com>
List-Archive: <http://sourceware.cygnus.com/ml/cygwin/>
List-Post: <mailto:cygwin@sourceware.cygnus.com>
List-Help: <mailto:cygwin-help@sourceware.cygnus.com>, <http://sourceware.cygnus.com/ml/#faqs>
Sender: cygwin-owner@sourceware.cygnus.com
Delivered-To: mailing list cygwin@sourceware.cygnus.com
From: Chris Faylor <cgf@cygnus.com>
Date: Sun, 23 Apr 2000 00:12:39 -0400
To: cygwin@sourceware.cygnus.com
Subject: Re: cygwin: php4b2 & apache1.3.9
Message-ID: <20000423001239.A5421@cygnus.com>
Reply-To: cygwin@sourceware.cygnus.com
Mail-Followup-To: cgf@cygnus.com, cygwin@sourceware.cygnus.com
References: <00042223511350.20628@weba3.iname.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.12i
In-Reply-To: <00042223511350.20628@weba3.iname.net>; from steve1800@iname.com on Sat, Apr 22, 2000 at 11:51:13PM -0400

On Sat, Apr 22, 2000 at 11:51:13PM -0400, steve1800@iname.com wrote:
>I compiled the above and everthing was running
>very smoothly untill I attemped to use the 
>php4 "Copy()" function.
>
>Copy() appears to copy the file, but it corupts the
>file in the proccess.

This is probably due to the file being opened in "text mode".
If the program is using fopen, then it needs to add a "b"
to the second argument, i.e.

fopen ("foo", "rb"); /* or */
fopen ("foo", "wb");

Without this, \n and CTRL-Z characters may cause odd things to
happen.

Christopher Faylor
Cygwin Engineering Manager (and developer)
Cygnus Solutions, a Red Hat company

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

