dtrace: fix ipfw_rule_info_t translator

322e5efda8 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:
Andrey V. Elsukov 2021-09-02 16:35:01 +03:00
parent 9bb8304c10
commit 5c8e8e82ae

View File

@ -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;
};