mirror of
git://git.9front.org/plan9front/plan9front
synced 2025-01-12 11:10:06 +00:00
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:
parent
5ae675bebd
commit
605bed312a
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue