dtrace: fix ipfw_rule_info_t translator
322e5efda8578b has changed field names in the struct ip_fw. Use correct names in ipfw_rule_info_t translator in the ipfw.d script. Reported by: Keith White <kwhite uottawa at gmail> MFC after: 1 week
This commit is contained in:
parent
9bb8304c10
commit
5c8e8e82ae
@ -212,8 +212,8 @@ translator ipfw_rule_info_t < struct ip_fw *r > {
|
||||
flags = r->flags;
|
||||
set = r->set;
|
||||
rule_id = r->id;
|
||||
cached_id = r->cached_id;
|
||||
cached_pos = r->cached_pos;
|
||||
cached_id = r->cache.id;
|
||||
cached_pos = r->cache.pos;
|
||||
refcnt = r->refcnt;
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user