summaryrefslogtreecommitdiff
path: root/lang/php4/files/patch-ext_standard_dir.c
diff options
context:
space:
mode:
authorAlex Dupre <ale@FreeBSD.org>2007-02-17 10:18:31 +0000
committerAlex Dupre <ale@FreeBSD.org>2007-02-17 10:18:31 +0000
commitbea3954d7bcae666fd3f4b3e4e045081947e62bc (patch)
treeef0f78a57650d7934d9829ad1791278811b873f9 /lang/php4/files/patch-ext_standard_dir.c
parent- fix build on CURRENT (objformat) (diff)
Update to 4.4.5 release.
Notes
Notes: svn path=/head/; revision=185363
Diffstat (limited to 'lang/php4/files/patch-ext_standard_dir.c')
-rw-r--r--lang/php4/files/patch-ext_standard_dir.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/lang/php4/files/patch-ext_standard_dir.c b/lang/php4/files/patch-ext_standard_dir.c
deleted file mode 100644
index ef819306883b..000000000000
--- a/lang/php4/files/patch-ext_standard_dir.c
+++ /dev/null
@@ -1,20 +0,0 @@
---- ext/standard/dir.c.orig Mon Oct 16 06:59:56 2006
-+++ ext/standard/dir.c Mon Oct 16 07:00:06 2006
-@@ -16,7 +16,7 @@
- +----------------------------------------------------------------------+
- */
-
--/* $Id: dir.c,v 1.109.2.18.2.2 2006/01/01 13:46:57 sniper Exp $ */
-+/* $Id: dir.c,v 1.109.2.18.2.3 2006/10/04 23:20:02 iliaa Exp $ */
-
- /* {{{ includes/startup/misc */
-
-@@ -275,7 +275,7 @@
- RETURN_FALSE;
- }
-
-- if (PG(safe_mode) && !php_checkuid(str, NULL, CHECKUID_CHECK_FILE_AND_DIR)) {
-+ if ((PG(safe_mode) && !php_checkuid(str, NULL, CHECKUID_CHECK_FILE_AND_DIR)) || php_check_open_basedir(str TSRMLS_CC)) {
- RETURN_FALSE;
- }
- ret = VCWD_CHDIR(str);