X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=php_http_cache_api.h;h=a1d62eef20d922e2431963317bd1ce793502ebfc;hb=389e280e0bba312ff5ca9981801cc842dad26ec2;hp=ee9e8f831b6304f41874f8684a2baf8cf4150224;hpb=7b88d9022c90eb12e5fe195af8644935141c9d68;p=m6w6%2Fext-http diff --git a/php_http_cache_api.h b/php_http_cache_api.h index ee9e8f8..a1d62ee 100644 --- a/php_http_cache_api.h +++ b/php_http_cache_api.h @@ -6,7 +6,7 @@ | modification, are permitted provided that the conditions mentioned | | in the accompanying LICENSE file are met. | +--------------------------------------------------------------------+ - | Copyright (c) 2004-2005, Michael Wallner | + | Copyright (c) 2004-2006, Michael Wallner | +--------------------------------------------------------------------+ */ @@ -33,7 +33,7 @@ #define http_etag_digest(d, l) _http_etag_digest((d), (l)) static inline char *_http_etag_digest(const unsigned char *digest, int len) { - static const char hexdigits[16] = "0123456789abcdef"; + static const char hexdigits[17] = "0123456789abcdef"; int i; char *hex = emalloc(len * 2 + 1); char *ptr = hex;