devip: fix masks in ipmux filters

We were accidentally searching the key for '&', instead of the value.
Inferno received this exact fix at some point, but it never made it back to Plan 9.
This commit is contained in:
Jacob Moody 2024-07-26 22:03:34 +00:00
parent 5ae675bebd
commit 605bed312a

View file

@ -212,7 +212,7 @@ parsemux(char *p)
goto parseerror;
/* parse mask */
mask = follows(p, '&');
mask = follows(val, '&');
if(mask != nil){
switch(f->type){
case Tsrc: