diff options
author | Wez Furlong <wez@php.net> | 2002-09-07 20:58:30 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2002-09-07 20:58:30 +0000 |
commit | 3df412cf9b7a099e732802a9d61a83c95c193064 (patch) | |
tree | da4d70f815e8d86a415155cd75fe8374e5b683fd /main/php_streams.h | |
parent | 97f134cb457109f49b66544d98b45243399dca26 (diff) | |
download | php-git-3df412cf9b7a099e732802a9d61a83c95c193064.tar.gz |
Fix a couple of bad pointer indirections (oops).
Lets stick to a single category of "http" for the "user_agent"
context override.
Diffstat (limited to 'main/php_streams.h')
-rwxr-xr-x | main/php_streams.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_streams.h b/main/php_streams.h index 0bbd9d954e..fa57b5aff3 100755 --- a/main/php_streams.h +++ b/main/php_streams.h @@ -490,7 +490,7 @@ PHPAPI extern php_stream_ops php_stream_userspace_ops; PHPAPI void php_stream_context_free(php_stream_context *context); PHPAPI php_stream_context *php_stream_context_alloc(void); PHPAPI int php_stream_context_get_option(php_stream_context *context, - const char *wrappername, const char *optionname, zval **optionvalue); + const char *wrappername, const char *optionname, zval ***optionvalue); PHPAPI int php_stream_context_set_option(php_stream_context *context, const char *wrappername, const char *optionname, zval *optionvalue); |