hyanantha Fri Jan 3 09:21:19 2003 EDT Modified files: /php4/ext/ftp ftp.c Log: Modified for NetWare. Index: php4/ext/ftp/ftp.c diff -u php4/ext/ftp/ftp.c:1.69 php4/ext/ftp/ftp.c:1.70 --- php4/ext/ftp/ftp.c:1.69 Tue Dec 31 11:06:37 2002 +++ php4/ext/ftp/ftp.c Fri Jan 3 09:21:17 2003 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: ftp.c,v 1.69 2002/12/31 16:06:37 sebastian Exp $ */ +/* $Id: ftp.c,v 1.70 2003/01/03 14:21:17 hyanantha Exp $ */ #include "php.h" @@ -67,6 +67,11 @@ #include "ftp.h" #include "ext/standard/fsock.h" + +/* Additional headers for NetWare */ +#if defined(NETWARE) && defined(NEW_LIBC) && !defined(USE_WINSOCK) +#include <sys/select.h> +#endif /* sends an ftp command, returns true on success, false on error. * it sends the string "cmd args\r\n" if args is non-null, or
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php