From dd02a78629d39cbe03a47766755ca935f19df98b Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Mon, 15 Jan 2007 08:02:03 +0000 Subject: [PATCH] - use const php_hash_ops* --- php_http_cache_api.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/php_http_cache_api.h b/php_http_cache_api.h index dc9b515..518a5f8 100644 --- a/php_http_cache_api.h +++ b/php_http_cache_api.h @@ -49,7 +49,7 @@ static inline void *_http_etag_init(TSRMLS_D) char *mode = HTTP_G->etag.mode; #ifdef HTTP_HAVE_HASH - php_hash_ops *eho = NULL; + const php_hash_ops *eho = NULL; if (mode && (eho = php_hash_fetch_ops(mode, strlen(mode)))) { ctx = emalloc(eho->context_size); @@ -75,7 +75,7 @@ static inline char *_http_etag_finish(void *ctx TSRMLS_DC) char *etag = NULL, *mode = HTTP_G->etag.mode; #ifdef HTTP_HAVE_HASH - php_hash_ops *eho = NULL; + const php_hash_ops *eho = NULL; if (mode && (eho = php_hash_fetch_ops(mode, strlen(mode)))) { eho->hash_final(digest, ctx); @@ -102,7 +102,7 @@ static inline void _http_etag_update(void *ctx, const char *data_ptr, size_t dat { char *mode = HTTP_G->etag.mode; #ifdef HTTP_HAVE_HASH - php_hash_ops *eho = NULL; + const php_hash_ops *eho = NULL; if (mode && (eho = php_hash_fetch_ops(mode, strlen(mode)))) { eho->hash_update(ctx, (const unsigned char *) data_ptr, data_len); -- 2.30.2