summaryrefslogtreecommitdiffstats
path: root/src/conntrack
diff options
context:
space:
mode:
authorKen-ichirou MATSUZAWA <chamaken@gmail.com>2014-10-08 09:22:43 +0900
committerFlorian Westphal <fw@strlen.de>2014-10-08 09:51:49 +0200
commit8cf7c41709c949d1472f030e78ab50b5f9c6bcc6 (patch)
treeb3d82276a9572d43e605b022b378fe49aa8f74af /src/conntrack
parent7b210390cd92ae27c6afd0865b40bf436d65ec52 (diff)
doc: fix symbol name typo in comment
Signed-off-by: Ken-ichirou MATSUZAWA <chamas@h4.dion.ne.jp> Signed-off-by: Florian Westphal <fw@strlen.de>
Diffstat (limited to 'src/conntrack')
-rw-r--r--src/conntrack/api.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/conntrack/api.c b/src/conntrack/api.c
index 073ea5c..fede302 100644
--- a/src/conntrack/api.c
+++ b/src/conntrack/api.c
@@ -1391,10 +1391,10 @@ void nfct_filter_add_attr_u32(struct nfct_filter *filter,
* \param logic filter logic that we want to use
*
* You can only use this function once to set the filtering logic for
- * one attribute. You can define two logics: NFCT_FILTER_POSITIVE_LOGIC
- * that accept events that match the filter, and NFCT_FILTER_NEGATIVE_LOGIC
+ * one attribute. You can define two logics: NFCT_FILTER_LOGIC_POSITIVE
+ * that accept events that match the filter, and NFCT_FILTER_LOGIC_NEGATIVE
* that rejects events that match the filter. Default filtering logic is
- * NFCT_FILTER_POSITIVE_LOGIC.
+ * NFCT_FILTER_LOGIC_POSITIVE.
*
* On error, it returns -1 and errno is appropriately set. On success, it
* returns 0.