X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_cache_api.h;h=6c2121c9c787f9571aeb454317ba47b560e01b9c;hp=a1d62eef20d922e2431963317bd1ce793502ebfc;hb=1382fe5a3ed5209ab05745ca95495885e85ff2a0;hpb=bf86dcdcd68677a8c4b7c8193388c529a55a3503 diff --git a/php_http_cache_api.h b/php_http_cache_api.h index a1d62ee..6c2121c 100644 --- a/php_http_cache_api.h +++ b/php_http_cache_api.h @@ -51,7 +51,7 @@ static inline char *_http_etag_digest(const unsigned char *digest, int len) static inline void *_http_etag_init(TSRMLS_D) { void *ctx = NULL; - char *mode = HTTP_G(etag).mode; + char *mode = HTTP_G->etag.mode; #ifdef HTTP_HAVE_EXT_HASH php_hash_ops *eho = NULL; @@ -77,7 +77,7 @@ static inline void *_http_etag_init(TSRMLS_D) static inline char *_http_etag_finish(void *ctx TSRMLS_DC) { unsigned char digest[128] = {0}; - char *etag = NULL, *mode = HTTP_G(etag).mode; + char *etag = NULL, *mode = HTTP_G->etag.mode; #ifdef HTTP_HAVE_EXT_HASH php_hash_ops *eho = NULL; @@ -105,7 +105,7 @@ static inline char *_http_etag_finish(void *ctx TSRMLS_DC) #define http_etag_update(c, d, l) _http_etag_update((c), (d), (l) TSRMLS_CC) static inline void _http_etag_update(void *ctx, const char *data_ptr, size_t data_len TSRMLS_DC) { - char *mode = HTTP_G(etag).mode; + char *mode = HTTP_G->etag.mode; #ifdef HTTP_HAVE_EXT_HASH php_hash_ops *eho = NULL;