100_php_http_etag_bigendian_check.patch 370 B

1234567891011
  1. --- a/src/php_http_etag.c 2016-12-12 10:04:21.000000000 +0100
  2. +++ b/src/php_http_etag.c 2016-12-23 21:10:59.523222367 +0100
  3. @@ -60,7 +60,7 @@
  4. unsigned char buf[4];
  5. *((uint *) e->ctx) = ~*((uint *) e->ctx);
  6. -#if WORDS_BIGENDIAN
  7. +#ifdef WORDS_BIGENDIAN
  8. etag = php_http_etag_digest((unsigned char *) e->ctx, 4);
  9. #else
  10. buf[0] = ((unsigned char *) e->ctx)[3];