X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_etag.c;h=891717d0bf8a6e46573f83a262b1bcd2beafca44;hp=543ce5fcf4078721953e94b8edebb7e12c737972;hb=4d68865693332389b875e4466f8b5368c0876e15;hpb=8d05291f42b3b42159b3fe91492aa4862f3d4405 diff --git a/php_http_etag.c b/php_http_etag.c index 543ce5f..891717d 100644 --- a/php_http_etag.c +++ b/php_http_etag.c @@ -10,9 +10,9 @@ +--------------------------------------------------------------------+ */ -#include "php_http.h" +#include "php_http_api.h" -#if PHP_HTTP_HAVE_HASH +#ifdef PHP_HTTP_HAVE_HASH # include "php_hash.h" #endif @@ -25,7 +25,7 @@ PHP_HTTP_API php_http_etag_t *php_http_etag_init(const char *mode TSRMLS_DC) void *ctx; php_http_etag_t *e; -#if PHP_HTTP_HAVE_HASH +#ifdef PHP_HTTP_HAVE_HASH const php_hash_ops *eho = NULL; if (mode && (eho = php_hash_fetch_ops(mode, strlen(mode)))) { @@ -57,7 +57,7 @@ PHP_HTTP_API char *php_http_etag_finish(php_http_etag_t *e) unsigned char digest[128] = {0}; char *etag = NULL; -#if PHP_HTTP_HAVE_HASH +#ifdef PHP_HTTP_HAVE_HASH const php_hash_ops *eho = NULL; if (e->mode && (eho = php_hash_fetch_ops(e->mode, strlen(e->mode)))) { @@ -84,7 +84,7 @@ PHP_HTTP_API char *php_http_etag_finish(php_http_etag_t *e) PHP_HTTP_API size_t php_http_etag_update(php_http_etag_t *e, const char *data_ptr, size_t data_len) { -#if PHP_HTTP_HAVE_HASH +#ifdef PHP_HTTP_HAVE_HASH const php_hash_ops *eho = NULL; if (e->mode && (eho = php_hash_fetch_ops(e->mode, strlen(e->mode)))) {