Changeset 925
- Timestamp:
- 09/27/07 21:22:31 (1 year ago)
- Files:
-
- cherokee/trunk/ChangeLog (modified) (1 diff)
- cherokee/trunk/cherokee/header.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee/trunk/ChangeLog
r924 r925 1 2007-09-27 Stefan de Konink <skinkie@xs4all.nl>, A.D.F <adefacc@tin.it> 2 3 * cherokee/header.c 4 - parse_method(), fixed macro detect_method() 5 in order to avoid an automatic conversion from 6 a constant string to a char pointer which leads to a wrong 7 string comparison (sizeof(ptr)). 8 1 9 2007-09-26 A.D.F <adefacc@tin.it> 2 10 cherokee/trunk/cherokee/header.c
r924 r925 272 272 273 273 #define detect_method(l,str,mthd) \ 274 if (cmp_str (line +1, (str" ")+1)) { \274 if (cmp_str (line, (str" "))) { \ 275 275 hdr->method = http_ ## mthd; \ 276 276 *pointer += sizeof(str); \