pollita Tue Dec 2 15:06:40 2003 EDT Modified files: /php-src/main/streams userspace.c Log: Register url_stat flag constants in userspace Index: php-src/main/streams/userspace.c diff -u php-src/main/streams/userspace.c:1.12 php-src/main/streams/userspace.c:1.13 --- php-src/main/streams/userspace.c:1.12 Tue Dec 2 14:14:31 2003 +++ php-src/main/streams/userspace.c Tue Dec 2 15:06:40 2003 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: userspace.c,v 1.12 2003/12/02 19:14:31 pollita Exp $ */ +/* $Id: userspace.c,v 1.13 2003/12/02 20:06:40 pollita Exp $ */ #include "php.h" #include "php_globals.h" @@ -71,6 +71,9 @@ REGISTER_LONG_CONSTANT("STREAM_REPORT_ERRORS", REPORT_ERRORS, CONST_CS|CONST_PERSISTENT); REGISTER_LONG_CONSTANT("STREAM_MUST_SEEK", STREAM_MUST_SEEK, CONST_CS|CONST_PERSISTENT); + REGISTER_LONG_CONSTANT("STREAM_URL_STAT_LINK", PHP_STREAM_URL_STAT_LINK, CONST_CS|CONST_PERSISTENT); + REGISTER_LONG_CONSTANT("STREAM_URL_STAT_QUIET", PHP_STREAM_URL_STAT_QUIET, CONST_CS|CONST_PERSISTENT); + return SUCCESS; }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php