mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 14:26:03 -04:00
dtrace: fix constants used by the siftr probe
The constants used in the C code were changed in https://svnweb.freebsd.org/changeset/base/343646 but changing them also in the dtrace translator was missed. Reviewed by: cc, rscheff MFC after: 3 days Sponsored by: Netflix, Inc. Differential Revision: https://reviews.freebsd.org/D40805
This commit is contained in:
parent
dc2d26df43
commit
f5541b85a5
1 changed files with 2 additions and 2 deletions
|
|
@ -29,9 +29,9 @@
|
|||
* Convert a SIFTR direction value to a string
|
||||
*/
|
||||
#pragma D binding "1.12.1" SIFTR_IN
|
||||
inline int SIFTR_IN = 1;
|
||||
inline int SIFTR_IN = 0;
|
||||
#pragma D binding "1.12.1" SIFTR_OUT
|
||||
inline int SIFTR_OUT = 2;
|
||||
inline int SIFTR_OUT = 1;
|
||||
|
||||
/* SIFTR direction strings. */
|
||||
#pragma D binding "1.12.1" siftr_dir_string
|
||||
|
|
|
|||
Loading…
Reference in a new issue