Typo in function example at src/modules/siputils/doc/siputils_admin.xml:
Instead of:
...
if(is_first_hop()) { ... }
...
if(is_first_hop_mode("1")) { ... }
...
example should be:
...
if (is_first_hop()) { ... }
...
if (is_first_hop("1")) { ... }
...
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.