"<!--#", check for "virtual" first. That's the more likely
case (assuming that people follow the recommendation in
the mod_include documentation that "virtual" be used in
preference to "file"), so by checking for "virtual" first
we can short-circuit out of the conditional after one
strcmp instead of two.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92358
13f79535-47bb-0310-9956-
ffa450edef68
return (1);
}
}
- if (!strcmp(tag, "file") || !strcmp(tag, "virtual")) {
+ if (!strcmp(tag, "virtual") || !strcmp(tag, "file")) {
request_rec *rr = NULL;
char *error_fmt = NULL;