Commit 0199bdeb authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Make symbol names in VCL case insensitive.

parent 9c31eb70
......@@ -134,7 +134,7 @@ VCC_Symbol(struct vcc *tl, struct symbol *parent,
assert(l > 0);
VTAILQ_FOREACH(sym, &parent->children, list) {
i = strncmp(sym->name, b, l);
i = strncasecmp(sym->name, b, l);
if (i < 0)
continue;
if (i > 0 || l < sym->nlen) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment