| 2674 | } |
| 2675 | |
| 2676 | static void store_variant_list(request_rec *r, negotiation_state *neg) |
| 2677 | { |
| 2678 | if (r->main == NULL) { |
| 2679 | apr_table_setn(r->notes, "variant-list", make_variant_list(r, neg)); |
| 2680 | } |
| 2681 | else { |
| 2682 | apr_table_setn(r->main->notes, "variant-list", |
| 2683 | make_variant_list(r->main, neg)); |
| 2684 | } |
| 2685 | } |
| 2686 | |
| 2687 | /* Called if we got a "Choice" response from the variant selection algorithm. |
| 2688 | * It checks the result of the chosen variant to see if it |
no test coverage detected