Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 64804 | Differences between
and this patch

Collapse All | Expand All

(-)httpd-2.0/server/core.c (+4 lines)
Lines 353-361 Link Here
353
    /* Otherwise we simply use the base->sec_file array
353
    /* Otherwise we simply use the base->sec_file array
354
     */
354
     */
355
355
356
    /* use a separate ->satisfy[] array either way */
357
    conf->satisfy = apr_palloc(a, sizeof(*conf->satisfy) * METHODS);
356
    for (i = 0; i < METHODS; ++i) {
358
    for (i = 0; i < METHODS; ++i) {
357
        if (new->satisfy[i] != SATISFY_NOSPEC) {
359
        if (new->satisfy[i] != SATISFY_NOSPEC) {
358
            conf->satisfy[i] = new->satisfy[i];
360
            conf->satisfy[i] = new->satisfy[i];
361
        } else {
362
            conf->satisfy[i] = base->satisfy[i];
359
        }
363
        }
360
    }
364
    }
361
365

Return to bug 64804