regexec(): access extflags directly
authorDavid Mitchell <davem@iabyn.com>
Fri, 19 Jul 2013 17:12:53 +0000 (18:12 +0100)
committerDavid Mitchell <davem@iabyn.com>
Sun, 28 Jul 2013 09:33:39 +0000 (10:33 +0100)
commite322109a5f2971453e7404fd28ea1c8245701578
tree9db85ad4a0b3267c93c33987f76c1e1f405643fb
parent5d96616ff9c06a2ee155ec61f169ddb797d2ec15
regexec(): access extflags directly

Some bits of code that had been moved from pp_match() etc into
regexec() still used the external API to access flags, i.e.

    RX_EXTFLAGS(rx)

Replace those uses with the more direct

    prog->extflags

for consistency with the rest of the code.
regexec.c