Changeset 1909
- Timestamp:
- 08/15/2007 09:50:58 AM (11 months ago)
- Files:
-
- trunk/NEWS (modified) (1 diff)
- trunk/src/etag.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/NEWS
r1897 r1909 13 13 * fixed crash in mod_expire if 'modification' is used and stat() failed (#1063) 14 14 * fixed hardcoded font-sizes in mod_dirlisting (#1267) 15 * fixed different ETag length on 32/64 platforms (#1279) 15 16 16 17 - 1.4.14 - ??? trunk/src/etag.c
r1349 r1909 1 1 #include <string.h> 2 #include <stdint.h> 2 3 3 4 #include "buffer.h" … … 20 21 21 22 int etag_mutate(buffer *mut, buffer *etag) { 22 size_t h, i; 23 size_t i; 24 uint32_t h; 23 25 24 26 for (h=0, i=0; i < etag->used; ++i) h = (h<<5)^(h>>27)^(etag->ptr[i]);

