Commit:    3e6d633a0d8cef7de8b32febb61d0bb32628305a
Author:    Andras Elso <elso.and...@gmail.com>         Thu, 24 Jan 2013 
17:12:13 +0100
Committer: Stanislav Malyshev <s...@php.net>      Sun, 27 Jan 2013 17:11:14 
-0800
Parents:   122570443b828a51b4536d80ad487eb32bcc8817
Branches:  PHP-5.4 PHP-5.5 master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=3e6d633a0d8cef7de8b32febb61d0bb32628305a

Log:
Fix missing parameter

Changed paths:
  M  main/streams/php_stream_plain_wrapper.h


Diff:
diff --git a/main/streams/php_stream_plain_wrapper.h 
b/main/streams/php_stream_plain_wrapper.h
index 4b38755..d88b30c 100644
--- a/main/streams/php_stream_plain_wrapper.h
+++ b/main/streams/php_stream_plain_wrapper.h
@@ -31,7 +31,7 @@ PHPAPI php_stream *_php_stream_fopen(const char *filename, 
const char *mode, cha
 #define php_stream_fopen(filename, mode, opened)       
_php_stream_fopen((filename), (mode), (opened), 0 STREAMS_CC TSRMLS_CC)
 
 PHPAPI php_stream *_php_stream_fopen_with_path(char *filename, char *mode, 
char *path, char **opened_path, int options STREAMS_DC TSRMLS_DC);
-#define php_stream_fopen_with_path(filename, mode, path, opened)       
_php_stream_fopen_with_path((filename), (mode), (path), (opened) STREAMS_CC 
TSRMLS_CC)
+#define php_stream_fopen_with_path(filename, mode, path, opened)       
_php_stream_fopen_with_path((filename), (mode), (path), (opened), 0 STREAMS_CC 
TSRMLS_CC)
 
 PHPAPI php_stream *_php_stream_fopen_from_file(FILE *file, const char *mode 
STREAMS_DC TSRMLS_DC);
 #define php_stream_fopen_from_file(file, mode) 
_php_stream_fopen_from_file((file), (mode) STREAMS_CC TSRMLS_CC)


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to