diff options
author | Luciano Coelho <luciano.coelho@nokia.com> | 2010-05-20 15:59:16 +0200 |
---|---|---|
committer | Patrick McHardy <kaber@trash.net> | 2010-05-20 15:59:16 +0200 |
commit | 7ea7b858f4bc4fa1645f1327cf9e72c93981aa58 (patch) | |
tree | 9a475453edfcd08de4f56cb3e023434ef1fc85ae /include | |
parent | fc350777c705a39a312728ac5e8a6f164a828f5d (diff) |
netfilter: fix description of expected checkentry return code on xt_target
The text describing the return codes that are expected on calls to
checkentry() was incorrect. Instead of returning true or false, or an error
code, it should return 0 or an error code.
Signed-off-by: Luciano Coelho <luciano.coelho@nokia.com>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/netfilter/x_tables.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netfilter/x_tables.h b/include/linux/netfilter/x_tables.h index c2ee5d8550cf..c00cc0c4d0b7 100644 --- a/include/linux/netfilter/x_tables.h +++ b/include/linux/netfilter/x_tables.h @@ -333,7 +333,7 @@ struct xt_target { /* Called when user tries to insert an entry of this type: hook_mask is a bitmask of hooks from which it can be called. */ - /* Should return true or false, or an error code (-Exxxx). */ + /* Should return 0 on success or an error code otherwise (-Exxxx). */ int (*checkentry)(const struct xt_tgchk_param *); /* Called when entry of this type deleted. */ |