diff options
| author | Andi Gutmans <andi@php.net> | 1999-05-02 18:07:41 +0000 |
|---|---|---|
| committer | Andi Gutmans <andi@php.net> | 1999-05-02 18:07:41 +0000 |
| commit | 5dbe9246609e59439ca0340aed5b2eaac1bed7d8 (patch) | |
| tree | 9b2f8401987eb02e9165c975c954c6f3647ee6d6 /ext/hyperwave/hw.c | |
| parent | 7e0ee50ed484aae4ebc0601392157c9a79407919 (diff) | |
| download | php-git-5dbe9246609e59439ca0340aed5b2eaac1bed7d8.tar.gz | |
- Make ISAPI hook in as an extension too.
- Some work on moving stuff to SAPI.
Diffstat (limited to 'ext/hyperwave/hw.c')
| -rw-r--r-- | ext/hyperwave/hw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/hyperwave/hw.c b/ext/hyperwave/hw.c index 8ac6dbd070..8a813dde86 100644 --- a/ext/hyperwave/hw.c +++ b/ext/hyperwave/hw.c @@ -1533,7 +1533,7 @@ void php3_hw_getcgi(INTERNAL_FUNCTION_PARAMETERS) { sprintf(cgi_env_str, "CGI_REQUEST_METHOD=%s\nCGI_PATH_INFO=%s\nCGI_QUERY_STRING=%s", request_info.request_method, request_info.path_info, - request_info.query_string); + SG(request_info).query_string); #endif /* !!!! memory for object and attributes is allocated with malloc !!!! */ if (0 != (ptr->lasterror = send_getcgi(ptr->socket, id, cgi_env_str, &attributes, &object, &count))) @@ -1785,7 +1785,7 @@ void php3_hw_pipecgi(INTERNAL_FUNCTION_PARAMETERS) { sprintf(cgi_env_str, "CGI_REQUEST_METHOD=%s\nCGI_PATH_INFO=%s\nCGI_QUERY_STRING=%s", request_info.request_method, request_info.path_info, - request_info.query_string); + SG(request_info).query_string); #endif /* !!!! memory for object, bodytag and attributes is allocated with malloc !!!! */ if (0 != (ptr->lasterror = send_pipecgi(ptr->socket, |
