if (*(a2_end-1) == '?') {
/* a literal ? at the end of the unsubstituted rewrite rule */
if (newrule->flags & RULEFLAG_QSAPPEND) {
- /* with QSA, splitoutqueryargs will safely handle it if RULEFLAG_QSLAST is set */
+ /* with QSA, splitout_queryargs will safely handle it if RULEFLAG_QSLAST is set */
newrule->flags |= RULEFLAG_QSLAST;
}
else {
- /* avoid getting a a query string via inadvertent capture */
+ /* avoid getting a query string via inadvertent capture */
newrule->flags |= RULEFLAG_QSNONE;
- /* trailing ? has done its job, but splitoutqueryargs will not chop it off */
- *(a2_end-1) = '\0';
+ /* trailing ? has done its job, but splitout_queryargs will not chop it off */
+ *(a2_end-1) = '\0';
}
}
else if (newrule->flags & RULEFLAG_QSDISCARD) {