summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorHartmut Holzgraefe <hholzgra@php.net>2002-06-11 09:36:48 +0000
committerHartmut Holzgraefe <hholzgra@php.net>2002-06-11 09:36:48 +0000
commitc39a3bc880e4d57728ffaa4cbe095bcd535d0e3c (patch)
tree6e6fe303995cd825978090a09dd97ed6e53cf459 /main
parentacae873a6b396b015fd14f16276539a57a630ff7 (diff)
downloadphp-git-c39a3bc880e4d57728ffaa4cbe095bcd535d0e3c.tar.gz
macro definition fixed, guess it was the usual kind of cut&past bug?
Diffstat (limited to 'main')
-rwxr-xr-xmain/php_streams.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_streams.h b/main/php_streams.h
index e46dc5db35..d50b8135c4 100755
--- a/main/php_streams.h
+++ b/main/php_streams.h
@@ -265,7 +265,7 @@ PHPAPI int _php_stream_stat(php_stream *stream, php_stream_statbuf *ssb TSRMLS_D
#define php_stream_stat(stream, ssb) _php_stream_stat((stream), (ssb) TSRMLS_CC)
PHPAPI int _php_stream_stat_path(char *path, php_stream_statbuf *ssb TSRMLS_DC);
-#define php_stream_stat_path(path, ssb) _php_stream_stat((path), (ssb) TSRMLS_CC)
+#define php_stream_stat_path(path, ssb) _php_stream_stat_path((path), (ssb) TSRMLS_CC)
PHPAPI php_stream *_php_stream_opendir(char *path, int options, php_stream_context *context STREAMS_DC TSRMLS_DC);
#define php_stream_opendir(path, options, context) _php_stream_opendir((path), (options), (context) STREAMS_CC TSRMLS_CC)