Changeset 2030
- Timestamp:
- 01/15/2008 11:20:23 PM (8 months ago)
- Location:
- branches/lighttpd-1.4.x
- Files:
-
- 2 modified
-
NEWS (modified) (1 diff)
-
src/mod_fastcgi.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/lighttpd-1.4.x/NEWS
r2026 r2030 11 11 * fixed case-sensitive check for Auth-Method (#1456) 12 12 * execute fcgi app without /bin/sh if used as argument to spawn-fcgi (#1428) 13 * fixed a bug that made /-prefixed fcgi extensions being handled also when 14 matching the end of the uri (#1489) 13 15 14 16 - 1.4.18 - 2007-09-09 -
branches/lighttpd-1.4.x/src/mod_fastcgi.c
r1993 r2030 3457 3457 3458 3458 /* check extension in the form "/fcgi_pattern" */ 3459 if (*(extension->key->ptr) == '/' && strncmp(fn->ptr, extension->key->ptr, ct_len) == 0) { 3460 break; 3459 if (*(extension->key->ptr) == '/') { 3460 if (strncmp(fn->ptr, extension->key->ptr, ct_len) == 0) 3461 break; 3461 3462 } else if (0 == strncmp(fn->ptr + s_len - ct_len, extension->key->ptr, ct_len)) { 3462 3463 /* check extension in the form ".fcg" */ … … 3474 3475 host = extension->hosts[k]; 3475 3476 3476 /* we should have at least one proc that can do som thing */3477 /* we should have at least one proc that can do something */ 3477 3478 if (host->active_procs == 0) { 3478 3479 host = NULL;

