mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Tweak the 'I' flagged value
'I' was omitting 'zero' values. This is not quite correct, and was put in as a hack but not documented. Remove it. If we find what the hack was really needed for, we'll either fix the need for it, or invent a new flagged value type. Submitted by: hps@ Sponsored by: Netflix
This commit is contained in:
parent
b9c40202d8
commit
5e0195c8f5
1 changed files with 1 additions and 1 deletions
|
|
@ -285,7 +285,7 @@ search_hints(const char *bus, const char *dev, const char *pnpinfo)
|
|||
break;
|
||||
/*FALLTHROUGH*/
|
||||
case 'I':
|
||||
if (v != ival && ival != 0)
|
||||
if (v != ival)
|
||||
notme++;
|
||||
break;
|
||||
case 'G':
|
||||
|
|
|
|||
Loading…
Reference in a new issue