Re: [PHP4BETA] cvs: php4 /ext/ftp/ ftp.c
[email protected] (Sascha Schumann)
| Newsgroups | php.version4 |
|---|---|
| Message-ID | <[email protected]> |
On Tue, 23 May 2000, Frank M. Kromann wrote: > fmk Tue May 23 12:36:48 2000 EDT > > Modified files: > /php4/ext/ftp ftp.c > Log: > chang #if to #ifdef > > Index: php4/ext/ftp/ftp.c > diff -u php4/ext/ftp/ftp.c:1.18 php4/ext/ftp/ftp.c:1.19 > --- php4/ext/ftp/ftp.c:1.18 Tue May 23 10:05:22 2000 > +++ php4/ext/ftp/ftp.c Tue May 23 12:36:48 2000 > @@ -28,7 +28,7 @@ > +----------------------------------------------------------------------+ > */ > > -/* $Id: ftp.c,v 1.18 2000/05/23 08:05:22 fmk Exp $ */ > +/* $Id: ftp.c,v 1.19 2000/05/23 10:36:48 fmk Exp $ */ > > #include "php.h" > > @@ -37,7 +37,7 @@ > #include <stdio.h> > #include <ctype.h> > #include <stdlib.h> > -#if HAVE_UINSTD_H > +#ifdef HAVE_UINSTD_H Yeah, but it is still UINSTD. Please use HAVE_UNISTD_H (note UIN vs. UNI). - Sascha