diff options
author | Jan Engelhardt <jengelh@medozas.de> | 2010-03-25 15:34:45 (GMT) |
---|---|---|
committer | Jan Engelhardt <jengelh@medozas.de> | 2010-03-25 15:55:49 (GMT) |
commit | d6b00a5345ce4e86e8b00a88bb84a2c0c1f69ddc (patch) | |
tree | 11d68bb08584fbbae02a7bf22599bdd67da4408e /fs/hpfs | |
parent | bd414ee605ff3ac5fcd79f57269a897879ee4cde (diff) | |
download | linux-d6b00a5345ce4e86e8b00a88bb84a2c0c1f69ddc.tar.xz |
netfilter: xtables: change targets to return error code
Part of the transition of done by this semantic patch:
// <smpl>
@ rule1 @
struct xt_target ops;
identifier check;
@@
ops.checkentry = check;
@@
identifier rule1.check;
@@
check(...) { <...
-return true;
+return 0;
...> }
@@
identifier rule1.check;
@@
check(...) { <...
-return false;
+return -EINVAL;
...> }
// </smpl>
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Diffstat (limited to 'fs/hpfs')
0 files changed, 0 insertions, 0 deletions