~ubuntu-branches/ubuntu/lucid/lighttpd/lucid-security

« back to all changes in this revision

Viewing changes to src/response.c

  • Committer: Bazaar Package Importer
  • Author(s): Krzysztof Krzyzaniak (eloy)
  • Date: 2006-01-16 20:06:39 UTC
  • mto: (6.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: james.westby@ubuntu.com-20060116200639-nejjwyvlkgjhzasa
Tags: upstream-1.4.9
ImportĀ upstreamĀ versionĀ 1.4.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
        /* no decision yet, build conf->filename */
134
134
        if (con->mode == DIRECT && con->physical.path->used == 0) {
135
135
                char *qstr;
 
136
 
 
137
                /* we only come here when we have the parse the full request again
 
138
                 * 
 
139
                 * a HANDLER_COMEBACK from mod_rewrite and mod_fastcgi might be a 
 
140
                 * problem here as mod_setenv might get called multiple times
 
141
                 *
 
142
                 * fastcgi-auth might lead to a COMEBACK too
 
143
                 * fastcgi again dead server too
 
144
                 *
 
145
                 * mod_compress might add headers twice too
 
146
                 * 
 
147
                 *  */
136
148
                
137
149
                if (con->conf.log_condition_handling) {
138
150
                        log_error_write(srv, __FILE__, __LINE__,  "s",  "run condition");
334
346
                 * 
335
347
                 * convert to lower-case
336
348
                 */
337
 
                if (con->conf.force_lower_case) {
 
349
                if (con->conf.force_lowercase_filenames) {
338
350
                        buffer_to_lower(con->physical.rel_path);
339
351
                }
340
352