diff options
author | Uwe Steinmann <steinm@php.net> | 2001-02-22 09:38:59 +0000 |
---|---|---|
committer | Uwe Steinmann <steinm@php.net> | 2001-02-22 09:38:59 +0000 |
commit | 454221ba621aaf163cc642e40ed1a0892b2e2db7 (patch) | |
tree | f51cf157a526b37211f4b7be9679352de6abe7ee /ext/hyperwave | |
parent | b0af96a9fe961dfa5a92607dbc317b50a88c00f1 (diff) | |
download | php-git-454221ba621aaf163cc642e40ed1a0892b2e2db7.tar.gz |
- took out the HwSLS_FETCH to make it compile again on Unix
Is this really neccesary at this point?
Diffstat (limited to 'ext/hyperwave')
-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 96e052f0b4..dd32515d25 100644 --- a/ext/hyperwave/hw.c +++ b/ext/hyperwave/hw.c @@ -146,7 +146,7 @@ void print_msg(hg_msg *msg, char *str, int txt); void _close_hw_link(zend_rsrc_list_entry *rsrc) { - HwSLS_FETCH(); +/* HwSLS_FETCH(); */ hw_connection *conn = (hw_connection *)rsrc->ptr; if(conn->hostname) free(conn->hostname); @@ -159,7 +159,7 @@ void _close_hw_link(zend_rsrc_list_entry *rsrc) void _close_hw_plink(zend_rsrc_list_entry *rsrc) { - HwSLS_FETCH(); +/* HwSLS_FETCH(); */ hw_connection *conn = (hw_connection *)rsrc->ptr; if(conn->hostname) free(conn->hostname); |